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 /kiconedit/utils.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 'kiconedit/utils.h')
-rw-r--r-- | kiconedit/utils.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kiconedit/utils.h b/kiconedit/utils.h index c1e1a4c0..5c3f19c0 100644 --- a/kiconedit/utils.h +++ b/kiconedit/utils.h @@ -22,15 +22,15 @@ #ifndef __UTILS_H__ #define __UTILS_H__ -#include <qimage.h> +#include <tqimage.h> #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H -#include <qdir.h> -#include <qfile.h> -#include <qfileinfo.h> +#include <tqdir.h> +#include <tqfile.h> +#include <tqfileinfo.h> #include <kapplication.h> #define OPAQUE_MASK 0xff000000 @@ -57,14 +57,14 @@ struct imageFormat const char *extension; }; -typedef QPtrList<struct imageFormat> imageFormats; +typedef TQPtrList<struct imageFormat> imageFormats; extern imageFormats *formats; void setupImageHandlers(); -bool copyFile(const QString &src, const QString &dest); -bool removeFile(const QString &file); -bool moveFile(const QString &src, const QString &dest); +bool copyFile(const TQString &src, const TQString &dest); +bool removeFile(const TQString &file); +bool moveFile(const TQString &src, const TQString &dest); uint kdeColor(uint c); #endif //__UTILS_H__ |