--- Vago/trunk/Vago/main.cpp 2016/10/30 14:42:39 1058 +++ s10k/Vago/main.cpp 2017/12/30 13:43:28 1092 @@ -1,7 +1,8 @@ #include #include "mainwindow.h" - +// TODO add lineedit to other lineedits that can receive files or folders, create additional funtions in lineedit where we can specify what kind of argument it accepts +// Example: setAllowFolders(), setAllowFiles() or setAcceptedTypes(Enum from QtFiles) int main(int argc, char *argv[]) { @@ -10,9 +11,6 @@ int main(int argc, char *argv[]) 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(); }