diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:16:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:16:01 -0600 |
commit | 9771f17f8cc5252b12ec5f3edf47ff9bffdf997f (patch) | |
tree | b9e389db87bdba126010d03fb5bccdc748d0e6fa /quanta/components/cvsservice/cvsservice.h | |
parent | 9930e16dde86b7de9b792613d826f4f8648b9768 (diff) | |
download | tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.tar.gz tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'quanta/components/cvsservice/cvsservice.h')
-rw-r--r-- | quanta/components/cvsservice/cvsservice.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/quanta/components/cvsservice/cvsservice.h b/quanta/components/cvsservice/cvsservice.h index 4ff92cbe..5c12d91a 100644 --- a/quanta/components/cvsservice/cvsservice.h +++ b/quanta/components/cvsservice/cvsservice.h @@ -26,8 +26,8 @@ #include "cvsservicedcopif.h" class TQTimer; -class KPopupMenu; -class KActionCollection; +class TDEPopupMenu; +class TDEActionCollection; class CvsJob_stub; class CvsService_stub; class Repository_stub; @@ -49,7 +49,7 @@ public: * since this class is a singleton you must use this function to access it * @return the class pointer */ - static CVSService* ref(KActionCollection *ac = 0L) + static CVSService* ref(TDEActionCollection *ac = 0L) { static CVSService *m_ref; if (!m_ref) m_ref = new CVSService(ac); @@ -63,7 +63,7 @@ public: bool exists() {return !m_appId.isEmpty();} void setRepository(const TQString &repository); void setCurrentFile(const TQString &file) {m_defaultFile = file;} - KPopupMenu *menu() {return m_menu;} + TDEPopupMenu *menu() {return m_menu;} public slots: void slotUpdate(); @@ -97,12 +97,12 @@ private slots: void slotTimeout(); private: - CVSService(KActionCollection *ac); + CVSService(TDEActionCollection *ac); void notInRepository(); void startService(); TQCString m_appId; - KPopupMenu *m_menu; + TDEPopupMenu *m_menu; Repository_stub *m_repository; CvsJob_stub *m_cvsJob; CvsService_stub *m_cvsService; |