text for inserting password

This commit is contained in:
thez3ro
2017-02-16 20:26:51 +01:00
committed by Louis-Bertrand Varin
parent 98911af396
commit e01e9715b9
3 changed files with 13 additions and 3 deletions

View File

@@ -33,6 +33,7 @@
int Extract::execute(int argc, char **argv)
{
QCoreApplication app(argc, argv);
QTextStream out(stdout);
QCommandLineParser parser;
parser.setApplicationDescription(QCoreApplication::translate("main",
@@ -46,6 +47,9 @@ int Extract::execute(int argc, char **argv)
return EXIT_FAILURE;
}
out << "Insert the database password\n> ";
out.flush();
static QTextStream inputTextStream(stdin, QIODevice::ReadOnly);
QString line = inputTextStream.readLine();
CompositeKey key = CompositeKey::readFromLine(line);
@@ -78,7 +82,6 @@ int Extract::execute(int argc, char **argv)
return EXIT_FAILURE;
}
QTextStream out(stdout);
out << xmlData.constData() << "\n";
return EXIT_SUCCESS;