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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user