diff options
Diffstat (limited to 'konq-plugins/domtreeviewer/domtreewindow.h')
-rw-r--r-- | konq-plugins/domtreeviewer/domtreewindow.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/konq-plugins/domtreeviewer/domtreewindow.h b/konq-plugins/domtreeviewer/domtreewindow.h index 9681df2..b2b0042 100644 --- a/konq-plugins/domtreeviewer/domtreewindow.h +++ b/konq-plugins/domtreeviewer/domtreewindow.h @@ -41,7 +41,7 @@ namespace KParts { class DOMTreeView; class PluginDomtreeviewer; -class KAction; +class TDEAction; class TDEConfig; class KPrinter; class KURL; @@ -58,7 +58,7 @@ class TQPopupMenu; * @short Main window class * @author Leo Savernik */ -class DOMTreeWindow : public KMainWindow +class DOMTreeWindow : public TDEMainWindow { Q_OBJECT @@ -116,9 +116,9 @@ public: TDEConfig *config() const { return _config; } /** returns the attribute delete action */ - KAction *deleteAttributeAction() const { return del_attr; } + TDEAction *deleteAttributeAction() const { return del_attr; } /** returns the node delete action */ - KAction *deleteNodeAction() const { return del_tree; } + TDEAction *deleteNodeAction() const { return del_tree; } public slots: /** @@ -187,7 +187,7 @@ private: TQPopupMenu *domtree_ctx; TDEConfig *_config; - KAction *del_tree, *del_attr; + TDEAction *del_tree, *del_attr; TQGuardedPtr<KParts::PartManager> part_manager; }; |