Mercurial > hg > touchkeys
comparison Source/GUI/MainWindow.cpp @ 50:114427cb39f0
Changes to allow software to be run from the command line (still needs testing)
author | Andrew McPherson <andrewm@eecs.qmul.ac.uk> |
---|---|
date | Mon, 13 Apr 2015 20:51:17 -0700 |
parents | 85577160a0d4 |
children | ff5d65c69e73 |
comparison
equal
deleted
inserted
replaced
49:90ce403d0dc5 | 50:114427cb39f0 |
---|---|
17 | 17 |
18 ===================================================================== | 18 ===================================================================== |
19 | 19 |
20 MainWindow.cpp: the control window, plus menu bar and Juce application methods | 20 MainWindow.cpp: the control window, plus menu bar and Juce application methods |
21 */ | 21 */ |
22 | |
23 #ifndef TOUCHKEYS_NO_GUI | |
22 | 24 |
23 #include "../../JuceLibraryCode/JuceHeader.h" | 25 #include "../../JuceLibraryCode/JuceHeader.h" |
24 #include "MainWindow.h" | 26 #include "MainWindow.h" |
25 | 27 |
26 //============================================================================== | 28 //============================================================================== |
369 void MainWindow::alertBoxResultChosen(int result, MainWindow *item) { | 371 void MainWindow::alertBoxResultChosen(int result, MainWindow *item) { |
370 if(result != 0) { | 372 if(result != 0) { |
371 item->clearPreset(); | 373 item->clearPreset(); |
372 } | 374 } |
373 } | 375 } |
376 | |
377 #endif // TOUCHKEYS_NO_GUI |