diff --git a/src/apps/deskflow-gui/deskflow-gui.cpp b/src/apps/deskflow-gui/deskflow-gui.cpp index f0990a589..69a3312ec 100644 --- a/src/apps/deskflow-gui/deskflow-gui.cpp +++ b/src/apps/deskflow-gui/deskflow-gui.cpp @@ -52,8 +52,8 @@ int main(int argc, char *argv[]) QApplication app(argc, argv); // Add Command Line Options - auto helpOption = QCommandLineOption("help", "Display Help on the command line"); - auto versionOption = QCommandLineOption("version", "Display version information"); + auto helpOption = QCommandLineOption({"h", "help"}, "Display Help on the command line"); + auto versionOption = QCommandLineOption({"v", "version"}, "Display version information"); auto resetOption = QCommandLineOption("reset", "Reset all settings"); QCommandLineParser parser;