diff --git a/src/http/Service.cpp b/src/http/Service.cpp index 7fd61aee3..fc853d42e 100644 --- a/src/http/Service.cpp +++ b/src/http/Service.cpp @@ -257,7 +257,7 @@ QList Service::findMatchingEntries(const QString& /* int res = dlg.exec(); if (dlg.remember()) { - Q_FOREACH (Entry * entry, pwEntries) { + Q_FOREACH (Entry * entry, pwEntriesToConfirm) { EntryConfig config; config.load(entry); if (res == QDialog::Accepted) { @@ -275,7 +275,7 @@ QList Service::findMatchingEntries(const QString& /* } } if (res == QDialog::Accepted) { - Q_FOREACH (Entry * entry, pwEntries) + Q_FOREACH (Entry * entry, pwEntriesToConfirm) result << prepareEntry(entry); } }