--- a/main.cpp Wed May 08 01:40:07 2013 +0300 +++ b/main.cpp Wed May 08 03:53:45 2013 +0300 @@ -37,7 +37,7 @@ // ============================================================================= // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= -int main (int dArgc, char* saArgv[]) { +int main (int argc, char* argv[]) { // Load or create the configuration if (!config::load()) { printf ("Creating configuration file...\n"); @@ -47,10 +47,12 @@ printf ("failed to create configuration file!\n"); } + const QApplication app (argc, argv); + LDPaths::initPaths (); + initColors (); initPartList (); - const QApplication app (dArgc, saArgv); ForgeWindow* win = new ForgeWindow; g_app = &app;