diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kcoloredit/texteditselection.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcoloredit/texteditselection.h')
-rw-r--r-- | kcoloredit/texteditselection.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kcoloredit/texteditselection.h b/kcoloredit/texteditselection.h index c2166098..e140a5dc 100644 --- a/kcoloredit/texteditselection.h +++ b/kcoloredit/texteditselection.h @@ -18,9 +18,9 @@ #ifndef TEXTEDITSELECTION_H #define TEXTEDITSELECTION_H -#include <qwidget.h> -#include <qlineedit.h> -#include <qlayout.h> +#include <tqwidget.h> +#include <tqlineedit.h> +#include <tqlayout.h> #include "color.h" @@ -28,12 +28,12 @@ * can be set. * @author Artur Rataj */ -class TextEditSelection : public QWidget { +class TextEditSelection : public TQWidget { Q_OBJECT public: /** Constructs the widget */ - TextEditSelection(QWidget *parent=0, const char *name=0); + TextEditSelection(TQWidget *parent=0, const char *name=0); ~TextEditSelection(); signals: @@ -46,8 +46,8 @@ public slots: protected: /** Adds a component line edit */ - void addComponent(const int index, QLineEdit* lineEdit, const int maxValue, const QString& labelString, - const int row, const int column, QGridLayout* layout); + void addComponent(const int index, TQLineEdit* lineEdit, const int maxValue, const TQString& labelString, + const int row, const int column, TQGridLayout* layout); /** sets RGB string in rgbStringLineEdit */ void setRgbString(const int red, const int green, const int blue); @@ -77,9 +77,9 @@ protected: COMPONENTS_NUM = 6 }; /** Line edit widgets table */ - QLineEdit* lineEditTable[COMPONENTS_NUM]; + TQLineEdit* lineEditTable[COMPONENTS_NUM]; /** RGB hex string line edit widgets table */ - QLineEdit* rgbStringLineEdit; + TQLineEdit* rgbStringLineEdit; /** The selected color */ Color color; /** A flag that components are matched */ |