diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/kfile/kpreviewwidgetbase.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kfile/kpreviewwidgetbase.h')
-rw-r--r-- | kio/kfile/kpreviewwidgetbase.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kio/kfile/kpreviewwidgetbase.h b/kio/kfile/kpreviewwidgetbase.h index 80f3f4ff4..3a2a49b31 100644 --- a/kio/kfile/kpreviewwidgetbase.h +++ b/kio/kfile/kpreviewwidgetbase.h @@ -21,8 +21,8 @@ #ifndef __KPREVIEWWIDGETBASE_H__ #define __KPREVIEWWIDGETBASE_H__ -#include <qptrdict.h> -#include <qwidget.h> +#include <tqptrdict.h> +#include <tqwidget.h> #include <kdelibs_export.h> @@ -54,7 +54,7 @@ public: * @param parent The KFileDialog this preview widget is going to be used in * @param name The internal name of this object */ - KPreviewWidgetBase(QWidget *parent, const char *name=0); + KPreviewWidgetBase(TQWidget *parent, const char *name=0); ~KPreviewWidgetBase(); public slots: @@ -73,10 +73,10 @@ public slots: */ virtual void clearPreview() = 0; - QStringList supportedMimeTypes() const; + TQStringList supportedMimeTypes() const; protected: - void setSupportedMimeTypes( const QStringList& mimeTypes ); + void setSupportedMimeTypes( const TQStringList& mimeTypes ); protected: virtual void virtual_hook( int, void* ) {}; @@ -86,7 +86,7 @@ private: KPreviewWidgetBasePrivate * d() const { return s_private->find( const_cast<KPreviewWidgetBase*>( this ) ); } - static QPtrDict<KPreviewWidgetBasePrivate> * s_private; + static TQPtrDict<KPreviewWidgetBasePrivate> * s_private; }; #endif |