From eba47f8f0637f451e21348187591e1f1fd58ac74 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 2 Aug 2010 19:23:46 +0000 Subject: TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kolourpaint/kpcommandhistory.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'kolourpaint/kpcommandhistory.h') diff --git a/kolourpaint/kpcommandhistory.h b/kolourpaint/kpcommandhistory.h index a1541512..c29d68fc 100644 --- a/kolourpaint/kpcommandhistory.h +++ b/kolourpaint/kpcommandhistory.h @@ -29,9 +29,9 @@ #ifndef KP_COMMAND_HISTORY_H #define KP_COMMAND_HISTORY_H -#include -#include -#include +#include +#include +#include class KActionCollection; @@ -50,7 +50,7 @@ public: virtual ~kpCommand (); public: - virtual QString name () const = 0; + virtual TQString name () const = 0; // Returns the estimated size in bytes. // @@ -82,20 +82,20 @@ protected: class kpNamedCommand : public kpCommand { public: - kpNamedCommand (const QString &name, kpMainWindow *mainWindow); + kpNamedCommand (const TQString &name, kpMainWindow *mainWindow); virtual ~kpNamedCommand (); - virtual QString name () const; + virtual TQString name () const; protected: - QString m_name; + TQString m_name; }; class kpMacroCommand : public kpNamedCommand { public: - kpMacroCommand (const QString &name, kpMainWindow *mainWindow); + kpMacroCommand (const TQString &name, kpMainWindow *mainWindow); virtual ~kpMacroCommand (); @@ -116,7 +116,7 @@ public: void addCommand (kpCommand *command); protected: - QValueList m_commandList; + TQValueList m_commandList; private: class kpMacroCommandPrivate *d; @@ -176,11 +176,11 @@ public slots: virtual void redoUpToNumber (int which); protected: - QString undoActionText () const; - QString redoActionText () const; + TQString undoActionText () const; + TQString redoActionText () const; void trimCommandListsUpdateActions (); - void trimCommandList (QValueList *commandList); + void trimCommandList (TQValueList *commandList); void trimCommandLists (); void updateActions (); @@ -200,8 +200,8 @@ protected: KToolBarPopupAction *m_actionUndo, *m_actionRedo; // (Front element is the next one) - QValueList m_undoCommandList; - QValueList m_redoCommandList; + TQValueList m_undoCommandList; + TQValueList m_redoCommandList; int m_undoMinLimit, m_undoMaxLimit, m_undoMaxLimitSizeLimit; -- cgit v1.2.1