0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 04:12:15 +02:00

qInfo -> qDebug and missing imports.

This commit is contained in:
Louis-Bertrand Varin 2017-01-06 20:24:50 -05:00
parent 007073354f
commit 1458ba6f6f

View File

@ -20,6 +20,8 @@
#include <QCoreApplication>
#include <QFile>
#include <QSaveFile>
#include <QStringList>
#include <QTextStream>
#include "core/Database.h"
#include "crypto/Crypto.h"
@ -29,6 +31,7 @@
#include "keys/FileKey.h"
#include "keys/PasswordKey.h"
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
@ -113,7 +116,7 @@ int main(int argc, char **argv)
return 0;
}
qInfo("Successfully merged the database files.\n");
qDebug("Successfully merged the database files.\n");
return 1;
}