diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /src/k3bdiroperator.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bdiroperator.h')
-rw-r--r-- | src/k3bdiroperator.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/k3bdiroperator.h b/src/k3bdiroperator.h index b231a8d..eb695d7 100644 --- a/src/k3bdiroperator.h +++ b/src/k3bdiroperator.h @@ -20,8 +20,8 @@ #include <kdiroperator.h> #include <kbookmarkmanager.h> -class QIconViewItem; -class QListViewItem; +class TQIconViewItem; +class TQListViewItem; class KBookmarkMenu; class KActionMenu; @@ -33,35 +33,36 @@ class KActionMenu; class K3bDirOperator : public KDirOperator, public KBookmarkOwner { Q_OBJECT + TQ_OBJECT public: - K3bDirOperator( const KURL& urlName = KURL(), QWidget* parent = 0, const char* name = 0 ); + K3bDirOperator( const KURL& urlName = KURL(), TQWidget* tqparent = 0, const char* name = 0 ); ~K3bDirOperator(); /** * reimplemented from KDirOperator */ - void readConfig( KConfig* cfg, const QString& group ); + void readConfig( KConfig* cfg, const TQString& group ); /** * reimplemented from KDirOperator */ - void writeConfig( KConfig* cfg, const QString& group ); + void writeConfig( KConfig* cfg, const TQString& group ); /** * reimplemented from KBookmarkOwner */ - void openBookmarkURL( const QString& url ); + void openBookmarkURL( const TQString& url ); /** * reimplemented from KBookmarkOwner */ - QString currentTitle() const; + TQString currentTitle() const; /** * reimplemented from KBookmarkOwner */ - QString currentURL() const; + TQString currentURL() const; KActionMenu* bookmarkMenu() const { return m_bmPopup; } @@ -72,7 +73,7 @@ class K3bDirOperator : public KDirOperator, public KBookmarkOwner /** * reimplemented from KDirOperator */ - void activatedMenu( const KFileItem*, const QPoint& ); + void activatedMenu( const KFileItem*, const TQPoint& ); private: KBookmarkMenu* m_bmMenu; |