--- Vago/trunk/Vago/main.cpp 2016/03/24 22:28:41 1035 +++ Vago/trunk/Vago/main.cpp 2016/10/30 14:42:39 1058 @@ -1,6 +1,7 @@ #include #include "mainwindow.h" + int main(int argc, char *argv[]) { @@ -8,7 +9,10 @@ int main(int argc, char *argv[]) MainWindow w; w.show(); a.setStyleSheet("QStatusBar::item { border: 0px; }"); //hide QLabels border in status bar //http://qt-project.org/forums/viewthread/18743 - + +// XmlToolsInterface *xmlToolsWindow = new XmlToolsInterface(new Logger(UtilVago::getAppPath(), GlobalVars::AppLogName)); +// xmlToolsWindow->show(); //it destroys itself when finished. + return a.exec(); }