diff src/MainWindow.cpp @ 364:f5a4c4283b93

adding no spectrogram and no sonification options
author matthiasm
date Tue, 15 Jul 2014 15:42:21 +0100
parents 3143b069c60a
children fec4dafd9093
line wrap: on
line diff
--- a/src/MainWindow.cpp	Mon Jul 14 19:25:42 2014 +0100
+++ b/src/MainWindow.cpp	Tue Jul 15 15:42:21 2014 +0100
@@ -88,7 +88,7 @@
 using std::vector;
 
 
-MainWindow::MainWindow(bool withAudioOutput) :
+MainWindow::MainWindow(bool withAudioOutput, bool withSonification, bool withSpectrogram) :
     MainWindowBase(withAudioOutput, false),
     m_overview(0),
     m_mainMenusCreated(false),
@@ -102,7 +102,9 @@
     m_intelligentActionOn(true), //GF: !!! temporary
     m_activityLog(new ActivityLog()),
     m_keyReference(new KeyReference()),
-    m_selectionAnchor(0)
+    m_selectionAnchor(0),
+    m_withSonification(withSonification),
+    m_withSpectrogram(withSpectrogram)
 {
     setWindowTitle(QApplication::applicationName());