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/kcombiview.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/kcombiview.h')
-rw-r--r-- | kio/kfile/kcombiview.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kio/kfile/kcombiview.h b/kio/kfile/kcombiview.h index b38876d71..3597669ea 100644 --- a/kio/kfile/kcombiview.h +++ b/kio/kfile/kcombiview.h @@ -22,7 +22,7 @@ #ifndef _KCOMBIVIEW_H #define _KCOMBIVIEW_H -#include <qsplitter.h> +#include <tqsplitter.h> #include <klocale.h> #include <kfile.h> @@ -51,16 +51,16 @@ class QIconViewItem; * @see KFileDetailView * @see KDirOperator */ -class KIO_EXPORT KCombiView : public QSplitter, +class KIO_EXPORT KCombiView : public TQSplitter, public KFileView { Q_OBJECT public: - KCombiView( QWidget *parent, const char *name); + KCombiView( TQWidget *parent, const char *name); virtual ~KCombiView(); - virtual QWidget *widget() { return this; } + virtual TQWidget *widget() { return this; } virtual void clearView(); virtual void updateView( bool ); @@ -91,10 +91,10 @@ public: virtual void insertItem( KFileItem *i ); virtual void clear(); - virtual void setSorting( QDir::SortSpec sort ); + virtual void setSorting( TQDir::SortSpec sort ); - virtual void readConfig( KConfig *, const QString& group = QString::null ); - virtual void writeConfig( KConfig *, const QString& group = QString::null); + virtual void readConfig( KConfig *, const TQString& group = TQString::null ); + virtual void writeConfig( KConfig *, const TQString& group = TQString::null); void ensureItemVisible( const KFileItem * ); @@ -107,7 +107,7 @@ protected: KFileView *right; protected slots: - void slotSortingChanged( QDir::SortSpec ); + void slotSortingChanged( TQDir::SortSpec ); private: KFileView *focusView( KFileView *preferred ) const; @@ -120,7 +120,7 @@ private: mutable KFileView *m_lastViewForPrevItem; protected: - virtual bool eventFilter( QObject *o, QEvent *e ); + virtual bool eventFilter( TQObject *o, TQEvent *e ); void setDropOptions_impl(int options); virtual void virtual_hook( int id, void* data ); |