diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-17 15:45:58 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-17 15:45:58 +0200 | 
| commit | 356b10b08ae2e12db0781922f6baaa4363115462 (patch) | |
| tree | 5ec1e5e49aa273ea2e75cccd91ab0c27a3289a46 /plugingui | |
| parent | 5d3f4c96c0dce82967400f9ea5b4fdc2824cbba3 (diff) | |
Fix... something /else/ about initialiser lists ...
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/mainwindow.cc | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/plugingui/mainwindow.cc b/plugingui/mainwindow.cc index 82d98df..ae51a36 100644 --- a/plugingui/mainwindow.cc +++ b/plugingui/mainwindow.cc @@ -38,9 +38,9 @@ namespace GUI  MainWindow::MainWindow(Settings& settings, void* native_window)  	: Window(native_window) -	, settings{settings} -	, settings_notifier{settings} -	, main_tab{this, settings, settings_notifier} +	, settings(settings) +	, settings_notifier(settings) +	, main_tab(this, settings, settings_notifier)  {  	CONNECT(this, sizeChangeNotifier, this, &MainWindow::sizeChanged);  	CONNECT(eventHandler(), closeNotifier, this, &MainWindow::closeEventHandler); | 
