diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kregexpeditor/regexpbuttons.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kregexpeditor/regexpbuttons.h')
-rw-r--r-- | kregexpeditor/regexpbuttons.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kregexpeditor/regexpbuttons.h b/kregexpeditor/regexpbuttons.h index 5671810..5c81049 100644 --- a/kregexpeditor/regexpbuttons.h +++ b/kregexpeditor/regexpbuttons.h @@ -18,7 +18,7 @@ #ifndef __REGEXPBUTTONS_H #define __REGEXPBUTTONS_H -#include <qdockwindow.h> +#include <tqdockwindow.h> #include "widgetfactory.h" class DoubleClickButton; class QButtonGroup; @@ -31,11 +31,11 @@ class RegExpButtons :public QDockWindow Q_OBJECT public: - RegExpButtons( QWidget *parent, const char *name = 0 ); + RegExpButtons( TQWidget *parent, const char *name = 0 ); void setFeatures( int features ); protected: - DoubleClickButton* insert(RegExpType tp, const char* file, QString tooltip, QString whatsthis); + DoubleClickButton* insert(RegExpType tp, const char* file, TQString tooltip, TQString whatsthis); public slots: void slotSelectNewAction(); @@ -50,13 +50,13 @@ signals: void doSelect(); private: - QButtonGroup* _grp; - QToolButton* _selectBut; - QToolButton* _wordBoundary; - QToolButton* _nonWordBoundary; - QToolButton* _posLookAhead; - QToolButton* _negLookAhead; - QSignalMapper* _mapper; // single click Mapper. + TQButtonGroup* _grp; + TQToolButton* _selectBut; + TQToolButton* _wordBoundary; + TQToolButton* _nonWordBoundary; + TQToolButton* _posLookAhead; + TQToolButton* _negLookAhead; + TQSignalMapper* _mapper; // single click Mapper. /** This variable is true if the use wishes to continue editing in the |