summaryrefslogtreecommitdiff
path: root/muse2/synti/simpledrums2/simpledrumsgui.cpp
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2011-10-07 02:20:29 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2011-10-07 02:20:29 +0000
commitf16b2037025918e32c5fd90527f76e1102e5ecb9 (patch)
tree0da3b7a29d13b5b826b291ccb2f2676d2e227b40 /muse2/synti/simpledrums2/simpledrumsgui.cpp
parent42039e7f7f215f6008829d8c6be591c998f1228c (diff)
(hopefully) final huge namespace update.
Diffstat (limited to 'muse2/synti/simpledrums2/simpledrumsgui.cpp')
-rw-r--r--muse2/synti/simpledrums2/simpledrumsgui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/muse2/synti/simpledrums2/simpledrumsgui.cpp b/muse2/synti/simpledrums2/simpledrumsgui.cpp
index d4271e1b..54063959 100644
--- a/muse2/synti/simpledrums2/simpledrumsgui.cpp
+++ b/muse2/synti/simpledrums2/simpledrumsgui.cpp
@@ -477,15 +477,15 @@ void SimpleSynthGui::readMessage(int)
}
/*!
- \fn SimpleSynthGui::processEvent(const MidiPlayEvent& ev)
+ \fn SimpleSynthGui::processEvent(const MusECore::MidiPlayEvent& ev)
*/
-void SimpleSynthGui::processEvent(const MidiPlayEvent& ev)
+void SimpleSynthGui::processEvent(const MusECore::MidiPlayEvent& ev)
{
SS_TRACE_IN
if (SS_DEBUG_MIDI) {
printf("GUI received midi event\n");
}
- if (ev.type() == ME_CONTROLLER) {
+ if (ev.type() == MusECore::ME_CONTROLLER) {
int id = ev.dataA();
int val = ev.dataB();
@@ -583,7 +583,7 @@ void SimpleSynthGui::processEvent(const MidiPlayEvent& ev)
//
// Sysexes:
//
- else if (ev.type() == ME_SYSEX) {
+ else if (ev.type() == MusECore::ME_SYSEX) {
byte* data = ev.data();
//byte* data = d + 2;
int cmd = *data;