Issue #11 addressed. Bug where only 30 passwords are shown is fixed. Shows all available passwords. When password was encrypted the password filename is added to the PasswordManagementWindow view

This commit is contained in:
amazing-username
2018-07-28 18:05:56 -04:00
parent 30bc1f8245
commit 5d8b8959d4
5 changed files with 419 additions and 15 deletions
+4 -1
View File
@@ -23,5 +23,8 @@ void FileNameRetrieval::retrievePasswordNames()
for (; beg!=end; ++beg)
if (beg->path().extension()==".txt")
passwordNames.push_back(beg->path().filename().string());
{
std::string passwordFilename = beg->path().filename().string();
passwordNames.push_back(passwordFilename);
}
}