diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 14:58:49 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 14:58:49 -0600 |
commit | 6240d69b1f11d3e6c59df5f736549b1fafc49dd0 (patch) | |
tree | da2273cc419ec68179c86f7deccfc0f5fdfe9181 /src/dolphin.h | |
parent | 5f2980e30e8c46f5bc9ac8b2694e3465d02424ff (diff) | |
download | dolphin-6240d69b1f11d3e6c59df5f736549b1fafc49dd0.tar.gz dolphin-6240d69b1f11d3e6c59df5f736549b1fafc49dd0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/dolphin.h')
-rw-r--r-- | src/dolphin.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dolphin.h b/src/dolphin.h index 779b5d7..ea7d081 100644 --- a/src/dolphin.h +++ b/src/dolphin.h @@ -43,7 +43,7 @@ class KFileIconView; class TQHBox; class TQIconViewItem; class TQSplitter; -class KAction; +class TDEAction; class URLNavigator; class leftSidebar; class rightSidebar; @@ -55,7 +55,7 @@ class rightSidebar; * * @author Peter Penz <[email protected]> */ -class Dolphin : public KMainWindow +class Dolphin : public TDEMainWindow { Q_OBJECT @@ -108,9 +108,9 @@ public: * of the 'Create New...' sub menu. Usually the list contains actions * for creating folders, text files, HTML files etc. */ - const TQPtrList<KAction>& fileGroupActions() const { return m_fileGroupActions; } - //const TQPtrList<KAction>& linkGroupActions() const { return m_linkGroupActions; } - //const TQPtrList<KAction>& linkToDeviceActions() const { return m_linkToDeviceActions; } + const TQPtrList<TDEAction>& fileGroupActions() const { return m_fileGroupActions; } + //const TQPtrList<TDEAction>& linkGroupActions() const { return m_linkGroupActions; } + //const TQPtrList<TDEAction>& linkToDeviceActions() const { return m_linkToDeviceActions; } /** * Refreshs the views of the main window by recreating them dependent from @@ -444,13 +444,13 @@ private: TQString comment; }; - TQPtrList<KAction> m_fileGroupActions; + TQPtrList<TDEAction> m_fileGroupActions; KSortableValueList<CreateFileEntry,TQString> m_createFileTemplates; // TODO: not used yet. See documentation of Dolphin::linkGroupActions() // and Dolphin::linkToDeviceActions() in for details. - //TQPtrList<KAction> m_linkGroupActions; - //TQPtrList<KAction> m_linkToDeviceActions; + //TQPtrList<TDEAction> m_linkGroupActions; + //TQPtrList<TDEAction> m_linkToDeviceActions; }; #endif // _DOLPHIN_H_ |