1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Moved password backends into autofill/passwordbackends folder.

This commit is contained in:
nowrep 2013-05-15 14:58:55 +02:00
parent d42c66735e
commit 2fea323af1
5 changed files with 6 additions and 5 deletions

View File

@ -23,6 +23,7 @@
#include <QSqlQuery> #include <QSqlQuery>
DatabasePasswordBackend::DatabasePasswordBackend() DatabasePasswordBackend::DatabasePasswordBackend()
: PasswordBackend()
{ {
} }

View File

@ -16,8 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */ * ============================================================ */
#include "passwordmanager.h" #include "passwordmanager.h"
#include "backends/passwordbackend.h" #include "passwordbackends/passwordbackend.h"
#include "backends/databasepasswordbackend.h" #include "passwordbackends/databasepasswordbackend.h"
#include "settings.h" #include "settings.h"
#include <QVector> #include <QVector>

View File

@ -217,7 +217,7 @@ SOURCES += \
network/pac/pacmanager.cpp \ network/pac/pacmanager.cpp \
tools/delayedfilewatcher.cpp \ tools/delayedfilewatcher.cpp \
autofill/passwordmanager.cpp \ autofill/passwordmanager.cpp \
autofill/backends/databasepasswordbackend.cpp autofill/passwordbackends/databasepasswordbackend.cpp
HEADERS += \ HEADERS += \
webview/tabpreview.h \ webview/tabpreview.h \
@ -395,8 +395,8 @@ HEADERS += \
network/pac/pacdatetime.h \ network/pac/pacdatetime.h \
tools/delayedfilewatcher.h \ tools/delayedfilewatcher.h \
autofill/passwordmanager.h \ autofill/passwordmanager.h \
autofill/backends/passwordbackend.h \ autofill/passwordbackends/passwordbackend.h \
autofill/backends/databasepasswordbackend.h autofill/passwordbackends/databasepasswordbackend.h
FORMS += \ FORMS += \
preferences/autofillmanager.ui \ preferences/autofillmanager.ui \