diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /parts/fileview/filetreeviewwidgetimpl.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/fileview/filetreeviewwidgetimpl.h')
-rw-r--r-- | parts/fileview/filetreeviewwidgetimpl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/parts/fileview/filetreeviewwidgetimpl.h b/parts/fileview/filetreeviewwidgetimpl.h index fae4b248..52a95fc1 100644 --- a/parts/fileview/filetreeviewwidgetimpl.h +++ b/parts/fileview/filetreeviewwidgetimpl.h @@ -12,10 +12,10 @@ #ifndef FILETREEVIEWWIDGETIMPL_H #define FILETREEVIEWWIDGETIMPL_H -#include <qobject.h> -#include <qvaluelist.h> +#include <tqobject.h> +#include <tqvaluelist.h> #include <kfiletreeview.h> -#include <qdom.h> +#include <tqdom.h> #include "fileitemfactory.h" @@ -47,8 +47,8 @@ public: KURL::List selectedPathUrls(); // shortcuts FileTreeWidget *fileTree() const; - QDomDocument &projectDom() const; - QHeader *header() const { return fileTree()->header(); } + TQDomDocument &projectDom() const; + TQHeader *header() const { return fileTree()->header(); } void setColumnWidth( int column, int w ) { fileTree()->setColumnWidth( column, w ); } int contentsWidth() const { return fileTree()->contentsWidth(); } void triggerUpdate() { fileTree()->triggerUpdate(); } @@ -68,9 +68,9 @@ public: * Here the popup menu is filled: by standard only the "reload tree" (only if the above function * returns true) and "show project files" options are added * @param popupMenu the menu to fill - * @param item the QListViewItem which this menu has been requested upon + * @param item the TQListViewItem which this menu has been requested upon */ - virtual void fillPopupMenu( QPopupMenu *popupMenu, QListViewItem *item ) const; + virtual void fillPopupMenu( TQPopupMenu *popupMenu, TQListViewItem *item ) const; /** * @return true if non project files are to be shown, false otherwise */ @@ -89,10 +89,10 @@ private slots: protected: void setBranchItemFactory( filetreeview::BranchItemFactory *aFactory ) { m_branchItemFactory = aFactory; } - QString projectDirectory() const; + TQString projectDirectory() const; private: - QValueList<QListViewItem*> allSelectedItems( QListViewItem * item ) const; + TQValueList<TQListViewItem*> allSelectedItems( TQListViewItem * item ) const; filetreeview::BranchItemFactory *m_branchItemFactory; FileViewPart *m_part; |