summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-06-11 17:32:38 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-06-11 17:32:38 +0200
commitcecb35dffd88c566e2b90609ce1fe81d28f67a6c (patch)
tree03d61f0a538e33e59a340c84588514038f9f1777 /main.cpp
parenta3167fa986a4b733118853b984497e5a76161bda (diff)
parentb36b79153b73606261018bfbe1b7395c2ecf54fb (diff)
Merge pull request #52 from IJHack/develop
Right click actions and many many small fixes.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/main.cpp b/main.cpp
index 9def9777..8f397ab8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -41,12 +41,7 @@ int main(int argc, char *argv[])
app.setActiveWindow(&w);
app.setWindowIcon(QIcon(":artwork/icon.png"));
w.setApp(&app);
- if (w.checkConfig()) {
- w.setText(text);
- w.show();
- return app.exec();
- } else {
- // canceled out of wizard
- return 0;
- }
+ w.setText(text);
+ w.show();
+ return app.exec();
}