diff options
Diffstat (limited to 'muse2/synti/libsynti')
-rw-r--r-- | muse2/synti/libsynti/mess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/synti/libsynti/mess.h b/muse2/synti/libsynti/mess.h index 79d3d7e7..db74c1c8 100644 --- a/muse2/synti/libsynti/mess.h +++ b/muse2/synti/libsynti/mess.h @@ -26,10 +26,10 @@ #define MESS_MAJOR_VERSION 1 #define MESS_MINOR_VERSION 1 +#include <QString> #include "mpevent.h" class QWidget; -class QString; class MessP; //--------------------------------------------------------- @@ -88,7 +88,7 @@ class Mess { virtual void getInitData(int* n, const unsigned char**) /*const*/ { *n = 0; } // No const: Synths may need to allocate member pointers. p4.0.27 Tim virtual int getControllerInfo(int, const char**, int*, int*, int*, int*) const {return 0;} - virtual const char* getPatchName(int, int, bool) const { return "?"; } + virtual QString getPatchName(int, int, bool) const { return "?"; } virtual const MidiPatch* getPatchInfo(int, const MidiPatch*) const { return 0; } // synthesizer -> host communication |