diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/pracro.cc | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/client/pracro.cc b/client/pracro.cc index 7ae939e..a3c56ff 100644 --- a/client/pracro.cc +++ b/client/pracro.cc @@ -72,6 +72,7 @@ static void print_usage()    printf("  -u, -U, --user USER       Defines the requesting user(not the patient),\n"           "                            defaults to \""USER_DEFAULT"\"\n");    printf("  -v, --version             Print version information and exit.\n"); +  printf("  -d, --debug               Make debug console available.\n");    printf("  -V, --viewer TEMPLATES    Show the viewer with TEMPLATES.\n");    printf("  -O, --viewer-only TEMPLATES\n");    printf("                            Show the viewer only (no pracro editor window) with TEMPLATES.\n"); @@ -96,8 +97,6 @@ int main(int argc, char *argv[])  {    QApplication app(argc, argv); -  dbg_init(); -    QString macro = MACRO_DEFAULT;    QString templ = TEMPLATE_DEFAULT;    bool show_viewer = false; @@ -136,6 +135,10 @@ int main(int argc, char *argv[])              *arg == "-c") {        config = getParam(args, arg);       } +    else if(*arg == "--debug" || +            *arg == "-d") { +      dbg_init(); +    }      else if(*arg == "--viewer" ||              *arg == "-V") {        templs = getParam(args, arg); | 
