summaryrefslogtreecommitdiffstats
path: root/src/commands/edit/SetLyricsCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/edit/SetLyricsCommand.h')
-rw-r--r--src/commands/edit/SetLyricsCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/edit/SetLyricsCommand.h b/src/commands/edit/SetLyricsCommand.h
index 499f12a..1d42150 100644
--- a/src/commands/edit/SetLyricsCommand.h
+++ b/src/commands/edit/SetLyricsCommand.h
@@ -27,7 +27,7 @@
#define _RG_SETLYRICSCOMMAND_H_
#include <kcommand.h>
-#include <qstring.h>
+#include <tqstring.h>
#include <vector>
#include <klocale.h>
@@ -44,10 +44,10 @@ class Event;
class SetLyricsCommand : public KNamedCommand
{
public:
- SetLyricsCommand(Segment *segment, int verse, QString newLyricData);
+ SetLyricsCommand(Segment *segment, int verse, TQString newLyricData);
~SetLyricsCommand();
- static QString getGlobalName() { return i18n("Edit L&yrics"); }
+ static TQString getGlobalName() { return i18n("Edit L&yrics"); }
virtual void execute();
virtual void unexecute();
@@ -56,7 +56,7 @@ private:
Segment *m_segment;
int m_verse;
std::vector<Event *> m_oldLyricEvents;
- QString m_newLyricData;
+ TQString m_newLyricData;
};