summaryrefslogtreecommitdiffstats
path: root/src/commands/edit/TransposeCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/edit/TransposeCommand.h')
-rw-r--r--src/commands/edit/TransposeCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/edit/TransposeCommand.h b/src/commands/edit/TransposeCommand.h
index 764f72b..6e3ddfd 100644
--- a/src/commands/edit/TransposeCommand.h
+++ b/src/commands/edit/TransposeCommand.h
@@ -27,7 +27,7 @@
#define _RG_TRANSPOSECOMMAND_H_
#include "document/BasicSelectionCommand.h"
-#include <qstring.h>
+#include <tqstring.h>
#include <klocale.h>
@@ -50,13 +50,13 @@ public:
BasicSelectionCommand(getDiatonicGlobalName(semitones, steps), selection, true),
m_selection(&selection), m_semitones(semitones), m_steps(steps), m_diatonic(true) { }
- static QString getDiatonicGlobalName(int semitones = 0, int step = 0) {
+ static TQString getDiatonicGlobalName(int semitones = 0, int step = 0) {
switch (semitones) {
default: return i18n("Transpose by &Interval...");
}
}
- static QString getGlobalName(int semitones = 0) {
+ static TQString getGlobalName(int semitones = 0) {
switch (semitones) {
case 1: return i18n("&Up a Semitone");
case -1: return i18n("&Down a Semitone");