Moved startup wizard to welcome page in main window's stacked widget.

This commit is contained in:
Jim Evins
2016-05-14 20:01:36 -04:00
parent 73b7475cbc
commit 8d9686430f
10 changed files with 339 additions and 245 deletions
+3 -3
View File
@@ -24,7 +24,7 @@
#include "libglabels/Db.h"
#include "Settings.h"
#include "MergeFactory.h"
#include "StartupWizard.h"
#include "MainWindow.h"
int main( int argc, char **argv )
@@ -48,8 +48,8 @@ int main( int argc, char **argv )
/////////////////////////////////
/// @TODO open file(s) from command line if present, otherwise start wizard
StartupWizard startupWizard;
startupWizard.show();
MainWindow mainWindow;
mainWindow.show();
return app.exec();
}