diff options
Diffstat (limited to 'parts/tools/kapplicationtree.h')
-rw-r--r-- | parts/tools/kapplicationtree.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/parts/tools/kapplicationtree.h b/parts/tools/kapplicationtree.h index 0ba2cc9f..b45bbeac 100644 --- a/parts/tools/kapplicationtree.h +++ b/parts/tools/kapplicationtree.h @@ -16,8 +16,8 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef __KDevApplicationTree_h__ -#define __KDevApplicationTree_h__ +#ifndef __TDevApplicationTree_h__ +#define __TDevApplicationTree_h__ #include <kurl.h> #include <tdelistview.h> @@ -36,7 +36,7 @@ class TQStringList; /** * @internal */ -class KDevAppTreeListItem : public TQListViewItem +class TDevAppTreeListItem : public TQListViewItem { bool parsed; bool directory; @@ -50,9 +50,9 @@ protected: void init(const TQPixmap& pixmap, bool parse, bool dir, const TQString& _path, const TQString& _exec, const TQString& _dEntry); public: - KDevAppTreeListItem( TDEListView* parent, const TQString & name, const TQPixmap& pixmap, + TDevAppTreeListItem( TDEListView* parent, const TQString & name, const TQPixmap& pixmap, bool parse, bool dir, const TQString& p, const TQString& c, const TQString& dE ); - KDevAppTreeListItem( TQListViewItem* parent, const TQString & name, const TQPixmap& pixmap, + TDevAppTreeListItem( TQListViewItem* parent, const TQString & name, const TQPixmap& pixmap, bool parse, bool dir, const TQString& p, const TQString& c, const TQString& dE ); bool isDirectory(); @@ -63,7 +63,7 @@ protected: virtual void activate(); virtual void setOpen( bool o ); - friend class KDevApplicationTree; + friend class TDevApplicationTree; }; /* ------------------------------------------------------------------------- */ @@ -71,23 +71,23 @@ protected: /** * @internal */ -class KDevApplicationTree : public TDEListView +class TDevApplicationTree : public TDEListView { Q_OBJECT public: - KDevApplicationTree( TQWidget *parent, const char* name = 0 ); + TDevApplicationTree( TQWidget *parent, const char* name = 0 ); /** * Add a group of .desktop/.kdelnk entries */ - void addDesktopGroup( TQString relPath, KDevAppTreeListItem *item = 0 ); + void addDesktopGroup( TQString relPath, TDevAppTreeListItem *item = 0 ); bool isDirSel(); protected: void resizeEvent( TQResizeEvent *_ev ); - KDevAppTreeListItem* currentitem; + TDevAppTreeListItem* currentitem; public slots: void slotItemHighlighted(TQListViewItem* i); |