summaryrefslogtreecommitdiffstats
path: root/src/MIDIDeviceSheet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MIDIDeviceSheet.cpp')
-rw-r--r--src/MIDIDeviceSheet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/MIDIDeviceSheet.cpp b/src/MIDIDeviceSheet.cpp
index f8ee5bb..b1a3ed8 100644
--- a/src/MIDIDeviceSheet.cpp
+++ b/src/MIDIDeviceSheet.cpp
@@ -29,6 +29,7 @@
#include "SekaijuApp.h"
#include "MIDIInDevicePage.h"
#include "MIDIOutDevicePage.h"
+#include "MIDIThruBindingPage.h"
#include "MIDIInstDefNormPage.h"
#include "MIDIInstDefDrumPage.h"
#include "MIDIDeviceSheet.h"
@@ -42,6 +43,7 @@ CMIDIDeviceSheet::CMIDIDeviceSheet (CWnd* pParentWnd)
:CPropertySheet (IDS_MIDIDEVICE_AND_INSTRUMENT, pParentWnd) {
AddPage (&m_theMIDIInDevicePage);
AddPage (&m_theMIDIOutDevicePage);
+ AddPage (&m_theMIDIThruBindingPage);
AddPage (&m_theMIDIInstDefNormPage);
AddPage (&m_theMIDIInstDefDrumPage);
}
@@ -87,6 +89,7 @@ void CMIDIDeviceSheet::OnApplyNow () {
pSekaijuApp->ApplyMIDIDeviceSheet (this);
m_theMIDIInDevicePage.SetModified (FALSE);
m_theMIDIOutDevicePage.SetModified (FALSE);
+ m_theMIDIThruBindingPage.SetModified (FALSE);
m_theMIDIInstDefNormPage.SetModified (FALSE);
m_theMIDIInstDefDrumPage.SetModified (FALSE);
}