summaryrefslogtreecommitdiff
path: root/muse2/muse/mplugins/midifilterimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/mplugins/midifilterimpl.h')
-rw-r--r--muse2/muse/mplugins/midifilterimpl.h27
1 files changed, 21 insertions, 6 deletions
diff --git a/muse2/muse/mplugins/midifilterimpl.h b/muse2/muse/mplugins/midifilterimpl.h
index bbda7757..de276f44 100644
--- a/muse2/muse/mplugins/midifilterimpl.h
+++ b/muse2/muse/mplugins/midifilterimpl.h
@@ -4,6 +4,21 @@
// $Id: midifilterimpl.h,v 1.1.1.1 2003/10/27 18:52:40 wschweer Exp $
//
// (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; version 2 of
+// the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//
//=========================================================
#ifndef __MIDIFILTERIMP_H__
@@ -23,21 +38,21 @@ class MidiFilterConfig : public QDialog, public Ui::MidiFilterConfigBase {
void rChanged(bool f, int val) {
if (f)
- midiRecordType |= val;
+ MusEGlobal::midiRecordType |= val;
else
- midiRecordType &= ~val;
+ MusEGlobal::midiRecordType &= ~val;
}
void tChanged(bool f, int val) {
if (f)
- midiThruType |= val;
+ MusEGlobal::midiThruType |= val;
else
- midiThruType &= ~val;
+ MusEGlobal::midiThruType &= ~val;
}
void chChanged(bool f, int val) {
if (f)
- midiInputChannel |= val;
+ MusEGlobal::midiInputChannel |= val;
else
- midiInputChannel &= ~val;
+ MusEGlobal::midiInputChannel &= ~val;
}
virtual void closeEvent(QCloseEvent*);