From 47d7598e99a363c6063c6479c4a5e72f8b2c8960 Mon Sep 17 00:00:00 2001 From: Francois Ferrand Date: Wed, 17 Apr 2013 00:11:05 +0200 Subject: [PATCH] Fix confirmation allowing access to all entries. --- src/http/Service.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }