diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-08-06 22:12:08 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-08-06 22:24:59 +0200 |
| commit | 9d586aec3a5615377e389318e97e7d756c970c96 (patch) | |
| tree | 8f2bf46ab5020a97482fbe87b6f1337842c70a19 /src/monitor-gui.cc | |
| parent | be1dc86b5434e84a88ba2e62873d87c62f8880c0 (diff) | |
Make sure QtLooper doesn't use QSocketNotifier before QApplication is created
Diffstat (limited to 'src/monitor-gui.cc')
| -rw-r--r-- | src/monitor-gui.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monitor-gui.cc b/src/monitor-gui.cc index 7cb6ab3..66c5e43 100644 --- a/src/monitor-gui.cc +++ b/src/monitor-gui.cc @@ -673,7 +673,7 @@ public: main_(GuiMain::create(APP_TITLE, 800, 500)), menu_(GuiMenu::create()), statusbar_(GuiStatusBar::create()), - looper_(main_->createLooper()), + looper_(main_->create_looper()), has_selection_(false), has_related_(false), selection_(0), |
