summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/NotationStrings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/NotationStrings.h')
-rw-r--r--src/gui/editors/notation/NotationStrings.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/editors/notation/NotationStrings.h b/src/gui/editors/notation/NotationStrings.h
index d79dff3..d058734 100644
--- a/src/gui/editors/notation/NotationStrings.h
+++ b/src/gui/editors/notation/NotationStrings.h
@@ -28,7 +28,7 @@
#include "base/Exception.h"
#include "base/NotationTypes.h"
-#include <qstring.h>
+#include <tqstring.h>
#include "base/Event.h"
@@ -58,7 +58,7 @@ public:
* region. Note that this includes English note names- set your
* LC_LANG to en_GB.
*/
- static QString getNoteName(Note note,
+ static TQString getNoteName(Note note,
bool plural = false, bool triplet = false);
/**
@@ -66,7 +66,7 @@ public:
* useful if the user has specified that they'd prefer American
* names to local names.
*/
- static QString getAmericanName(Note note,
+ static TQString getAmericanName(Note note,
bool plural = false, bool triplet = false);
/**
@@ -76,7 +76,7 @@ public:
* region. Note that this includes English note names- set your
* LC_LANG to en_GB.
*/
- static QString getShortNoteName(Note note,
+ static TQString getShortNoteName(Note note,
bool plural = false, bool triplet = false);
@@ -85,7 +85,7 @@ public:
* formal name used to name pixmap files and the like, so the exact
* values of these strings are pretty sensitive.
*/
- static QString getReferenceName(Note note, bool isRest = false);
+ static TQString getReferenceName(Note note, bool isRest = false);
typedef Exception MalformedNoteName;
@@ -94,7 +94,7 @@ public:
* reference name or an untranslated British, American or short name.
* May throw MalformedNoteName.
*/
- static Note getNoteForName(QString name);
+ static Note getNoteForName(TQString name);
/**
* Construct a label to describe the given duration as a note name in
@@ -102,7 +102,7 @@ public:
* and returns a non-zero value in errorReturn if it was not an exact
* match for the required duration.
*/
- static QString makeNoteMenuLabel(timeT duration,
+ static TQString makeNoteMenuLabel(timeT duration,
bool brief,
timeT &errorReturn,
bool plural = false);
@@ -111,7 +111,7 @@ private:
/**
* Return a string representing the dotted version of the input str.
*/
- static QString addDots(QString s, int dots,
+ static TQString addDots(TQString s, int dots,
bool hyphenate, bool internationalize);
};