diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:11:21 -0600 |
commit | f537c21b68e08f649b1b297bce8f3904603137e0 (patch) | |
tree | fb33065387509dea898c90022ddec9c3f8ede86d /konqueror/konq_guiclients.h | |
parent | dc5f267664506a312203c26bfe9001a448b0bb0f (diff) | |
download | tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'konqueror/konq_guiclients.h')
-rw-r--r-- | konqueror/konq_guiclients.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/konqueror/konq_guiclients.h b/konqueror/konq_guiclients.h index 238153371..73d9b9a60 100644 --- a/konqueror/konq_guiclients.h +++ b/konqueror/konq_guiclients.h @@ -25,8 +25,8 @@ #include <tqdict.h> #include <ktrader.h> -class KAction; -class KActionCollection; +class TDEAction; +class TDEActionCollection; class KonqMainWindow; class KonqView; @@ -59,7 +59,7 @@ public: bool isIntoTrash, bool doTabHandling ); virtual ~PopupMenuGUIClient(); - virtual KAction *action( const TQDomElement &element ) const; + virtual TDEAction *action( const TQDomElement &element ) const; private: void addEmbeddingService( TQDomElement &menu, int idx, const TQString &name, const KService::Ptr &service ); @@ -78,8 +78,8 @@ public: bool empty() const { return m_empty; } - TQPtrList<KAction> actions() const; - KAction *action( const TQString &name ) { return m_actions[ name ]; } + TQPtrList<TDEAction> actions() const; + TDEAction *action( const TQString &name ) { return m_actions[ name ]; } void saveConfig( bool add, const TQString &serviceName ); @@ -89,7 +89,7 @@ private slots: void slotViewRemoved( KonqView *view ); private: KonqMainWindow *m_mainWindow; - TQDict<KAction> m_actions; + TQDict<TDEAction> m_actions; bool m_empty; TQMap<TQString,bool> m_mapOrientation; }; |