summaryrefslogtreecommitdiffstats
path: root/konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h')
-rw-r--r--konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h b/konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h
index fc67e274e..6e20e7e03 100644
--- a/konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h
+++ b/konqueror/sidebar/trees/konq_sidebartreetoplevelitem.h
@@ -38,7 +38,7 @@ public:
* @param module the module handling this toplevel item
* @param path the path to the desktop file that was the reason for creating this item
*/
- KonqSidebarTreeTopLevelItem( KonqSidebarTree *parent, KonqSidebarTreeModule * module, const QString & path )
+ KonqSidebarTreeTopLevelItem( KonqSidebarTree *parent, KonqSidebarTreeModule * module, const TQString & path )
: KonqSidebarTreeItem(parent, 0L), m_module(module), m_path(path), m_bTopLevelGroup(false) { init(); }
/**
@@ -46,14 +46,14 @@ public:
* @param module the module handling this toplevel item
* @param path the path to the desktop file that was the reason for creating this item
*/
- KonqSidebarTreeTopLevelItem( KonqSidebarTreeItem *parentItem, KonqSidebarTreeModule * module, const QString & path )
+ KonqSidebarTreeTopLevelItem( KonqSidebarTreeItem *parentItem, KonqSidebarTreeModule * module, const TQString & path )
: KonqSidebarTreeItem( parentItem, 0L), m_module(module), m_path(path), m_bTopLevelGroup(false) { init(); }
void init();
- virtual bool acceptsDrops( const QStrList & formats );
- virtual void drop( QDropEvent * ev );
- virtual QDragObject * dragObject( QWidget * parent, bool move = false );
+ virtual bool acceptsDrops( const TQStrList & formats );
+ virtual void drop( TQDropEvent * ev );
+ virtual TQDragObject * dragObject( TQWidget * parent, bool move = false );
virtual void middleButtonClicked();
virtual void rightButtonPressed();
@@ -62,7 +62,7 @@ public:
virtual void del();
virtual void shred();
virtual void rename(); // start a rename operation
- virtual void rename( const QString & name ); // do the actual renaming
+ virtual void rename( const TQString & name ); // do the actual renaming
virtual void setOpen( bool open );
@@ -71,7 +71,7 @@ public:
virtual KURL externalURL() const { return m_externalURL; }
- virtual QString toolTipText() const;
+ virtual TQString toolTipText() const;
virtual void itemSelected();
@@ -87,13 +87,13 @@ public:
KonqSidebarTreeModule *module() const { return m_module; }
// The path to the desktop file responsible for this toplevel item
- QString path() const { return m_path; }
+ TQString path() const { return m_path; }
protected:
void delOperation( int method );
KonqSidebarTreeModule *m_module;
- QString m_path;
- QString m_comment;
+ TQString m_path;
+ TQString m_comment;
KURL m_externalURL;
bool m_bTopLevelGroup;
};