removing unnecessary code

This commit is contained in:
Filip Bucek 2019-11-08 08:06:56 +01:00
parent e31b09b2a9
commit 0c7887d944

View File

@ -11,14 +11,7 @@ int main(int argc, char *argv[])
qCDebug(sdkcore) << "test message";
QCoreApplication app(argc, argv);
QCoreApplication::setApplicationName("colnod-connector");
QCoreApplication::setApplicationVersion("1.0");
QCoreApplication::setApplicationName("example-app");
QCoreApplication::setApplicationVersion("0.1.0");
// Command line parsing
QCommandLineParser parser;
parser.setApplicationDescription("Colnod sync");
QCommandLineOption dryModeOption("dryMode", "ColnodAPI", "Read-only mode, prints changes which would normally be made");
parser.addOption(dryModeOption);
parser.process(app);
}