summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 15:48:53 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commit483ecd16de6801aed536eca64ed51a6a4c669e39 (patch)
treefbb67f71d7a9529d3f9896ab8fdb43816f75d4e5 /src/gui
parent9bc9ce00dd4d64a85700def449d7204c83bb79ad (diff)
downloadingen-483ecd16de6801aed536eca64ed51a6a4c669e39.tar.gz
ingen-483ecd16de6801aed536eca64ed51a6a4c669e39.tar.bz2
ingen-483ecd16de6801aed536eca64ed51a6a4c669e39.zip
Don't access static methods through instances
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/App.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp
index fa48cb18..dc8f605a 100644
--- a/src/gui/App.cpp
+++ b/src/gui/App.cpp
@@ -151,12 +151,12 @@ App::run()
// with 'ingen -egl' we'd get a bunch of notifications about load
// immediately before even knowing about the root graph or plugins)
while (!_connect_window->attached()) {
- if (_main->iteration()) {
+ if (Gtk::Main::iteration()) {
break;
}
}
- _main->run();
+ Gtk::Main::run();
}
void