diff options
Diffstat (limited to 'quanta/treeviews/templatestreeview.h')
-rw-r--r-- | quanta/treeviews/templatestreeview.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/quanta/treeviews/templatestreeview.h b/quanta/treeviews/templatestreeview.h index 075c9ba7..22fd3535 100644 --- a/quanta/treeviews/templatestreeview.h +++ b/quanta/treeviews/templatestreeview.h @@ -22,7 +22,7 @@ //forward declarations class QuantaPropertiesPage; -class KMainWindow; +class TDEMainWindow; class TemplatesTreeBranch : public BaseTreeBranch { @@ -49,7 +49,7 @@ public: * the parameter are only used at the first call to create the class * */ - static TemplatesTreeView* const ref(KMainWindow *parent = 0L, const char *name = 0L) + static TemplatesTreeView* const ref(TDEMainWindow *parent = 0L, const char *name = 0L) { static TemplatesTreeView *m_ref; if (!m_ref) m_ref = new TemplatesTreeView (parent, name); @@ -74,14 +74,14 @@ public slots: * displays the RBM * * - * @param listView KListView where the event comes from + * @param listView TDEListView where the event comes from * * @param item TQListViewItem where the mousepointer is hovering * * @param point TQPoint coordinates of the event * */ - void slotMenu(KListView *listView, TQListViewItem *item, const TQPoint &point); + void slotMenu(TDEListView *listView, TQListViewItem *item, const TQPoint &point); /** Creates a new document based in the selected template. */ void slotNewDocument(); /** Insert the template as text, image, new document. */ @@ -119,7 +119,7 @@ private: * If you need the class use TemplatesTreeView::ref() for * construction and reference */ - TemplatesTreeView(KMainWindow *parent, const char *name = 0L); + TemplatesTreeView(TDEMainWindow *parent, const char *name = 0L); /** Filters the template through and action, and returns the modified/filtered template file */ KURL filterTemplate(); @@ -135,10 +135,10 @@ private: TQString m_projectName; KURL localURL; KURL globalURL; - KPopupMenu *m_fileMenu; - KPopupMenu *m_folderMenu; - KPopupMenu *m_emptyAreaMenu; - KMainWindow *m_mainWindow; + TDEPopupMenu *m_fileMenu; + TDEPopupMenu *m_folderMenu; + TDEPopupMenu *m_emptyAreaMenu; + TDEMainWindow *m_mainWindow; DirInfo m_dirInfo; DirInfo m_parentDirInfo; int m_insertFileInProject; |