summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2017-04-17 23:55:51 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2017-04-17 23:55:51 +0200
commit6ed23c25c3eb2a9e4fd3f35754d9ec083278e595 (patch)
treebbb9375022a35bd3b50e06f3ae084940377e6d37
parentd3200d6dbafc04d618173599d017c3b83385cebf (diff)
Fix FreeBSD64 compile error.
-rw-r--r--plugingui/mainwindow.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugingui/mainwindow.cc b/plugingui/mainwindow.cc
index 12da08b..0cdb1b8 100644
--- a/plugingui/mainwindow.cc
+++ b/plugingui/mainwindow.cc
@@ -42,6 +42,9 @@ MainWindow::MainWindow(Settings& settings, void* native_window)
, settings_notifier(settings)
, main_tab(this, settings, settings_notifier)
{
+ // FIXME: remove this when settings are actually used in this class
+ (void)settings;
+
CONNECT(this, sizeChangeNotifier, this, &MainWindow::sizeChanged);
CONNECT(eventHandler(), closeNotifier, this, &MainWindow::closeEventHandler);