]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/main.cpp
Only use the svg files for the generation of the png files.
[bacula/bacula] / bacula / src / qt-console / main.cpp
index 43eeaf6a872df04a601ba5be2dec217d70148ed0..1facbaa7bd7123129a4064e9969b733635f44783 100644 (file)
@@ -7,8 +7,8 @@
    many others, a complete list can be found in the file AUTHORS.
    This program is Free Software; you can redistribute it and/or
    modify it under the terms of version two of the GNU General Public
-   License as published by the Free Software Foundation plus additions
-   that are listed in the file LICENSE.
+   License as published by the Free Software Foundation and included
+   in the file LICENSE.
 
    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
 MainWin *mainWin;
 QApplication *app;
 
-/*
- * ***FIXME*** move the following two into the MainWin class or
- *   the Console class.
- */
-bool g_commDebug = false;
-bool g_displayAll = false;
-
-
 /* Forward referenced functions */
 void terminate_console(int sig);                                
 static void usage();
@@ -68,6 +60,7 @@ int main(int argc, char *argv[])
 
    app = new QApplication(argc, argv);        
    app->setQuitOnLastWindowClosed(true);
+   QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
 
 
 #ifdef ENABLE_NLS
@@ -86,6 +79,8 @@ int main(int argc, char *argv[])
    sigignore.sa_handler = SIG_IGN;
    sigfillset(&sigignore.sa_mask);
    sigaction(SIGPIPE, &sigignore, NULL);
+   sigaction(SIGUSR2, &sigignore, NULL);
+
 
    while ((ch = getopt(argc, argv, "bc:d:r:st?")) != -1) {
       switch (ch) {