1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02: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>
DatabasePasswordBackend::DatabasePasswordBackend()
: PasswordBackend()
{
}

View File

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

View File

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