From ea5c6c1eb58a27785f32c000359cf0ba3fcc6567 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Sat, 3 Mar 2018 01:19:30 +0100 Subject: [PATCH] Process basic file, password and keyfile command line parameters Resolves #1358, resolves #1533, resolves #1600 --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index da71739c..6a99f6e2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -149,6 +149,7 @@ int main(int argc, char** argv) static QTextStream in(stdin, QIODevice::ReadOnly); password = in.readLine(); } + mainWindow.openDatabase(filename, password, parser.value(keyfileOption)); } }