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/loadpalettedlg.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/loadpalettedlg.h')
-rw-r--r-- | kcoloredit/loadpalettedlg.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kcoloredit/loadpalettedlg.h b/kcoloredit/loadpalettedlg.h index 3168ed68..f7dd50cb 100644 --- a/kcoloredit/loadpalettedlg.h +++ b/kcoloredit/loadpalettedlg.h @@ -18,7 +18,7 @@ #ifndef LOADPALETTEDLG_H #define LOADPALETTEDLG_H -#include <qcombobox.h> +#include <tqcombobox.h> #include <kdialog.h> /**A dialog showing a list of installed palettes, with a possibility @@ -31,16 +31,16 @@ class LoadPaletteDlg : public KDialogBase { public: /** constructs the dialog */ - LoadPaletteDlg(QWidget *parent = 0, const char *name = 0); + LoadPaletteDlg(TQWidget *parent = 0, const char *name = 0); ~LoadPaletteDlg(); /** @return the fetched file name */ - QString getFileName(); + TQString getFileName(); protected slots: /** sets fileName */ - void setFileName(QString* fileName); + void setFileName(TQString* fileName); /** sets fileName to that at position index in palettesFileNames */ void setFileName(int index); @@ -51,13 +51,13 @@ protected slots: private: /** A widget holding palettes names */ - QComboBox* paletteBox; + TQComboBox* paletteBox; /** A list of KDE palettes file names */ - QStringList palettesFileNames; + TQStringList palettesFileNames; /** A fetched palette file name */ - QString fileName; + TQString fileName; /** whether a browse file name hab already been inserted into * palettesFilenames */ |