diff options
Diffstat (limited to 'src/commands/segment/SegmentLabelCommand.h')
-rw-r--r-- | src/commands/segment/SegmentLabelCommand.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/commands/segment/SegmentLabelCommand.h b/src/commands/segment/SegmentLabelCommand.h index 1c55f3b..215b827 100644 --- a/src/commands/segment/SegmentLabelCommand.h +++ b/src/commands/segment/SegmentLabelCommand.h @@ -27,7 +27,7 @@ #define _RG_SEGMENTLABELCOMMAND_H_ #include <kcommand.h> -#include <qstring.h> +#include <tqstring.h> #include <vector> #include <klocale.h> @@ -45,10 +45,10 @@ class SegmentLabelCommand : public KNamedCommand { public: SegmentLabelCommand(SegmentSelection &segments, - const QString &label); + const TQString &label); virtual ~SegmentLabelCommand(); - static QString getGlobalName() + static TQString getGlobalName() { return i18n("Re&label..."); } virtual void execute(); @@ -56,8 +56,8 @@ public: protected: std::vector<Segment*> m_segments; - std::vector<QString> m_labels; - QString m_newLabel; + std::vector<TQString> m_labels; + TQString m_newLabel; }; |