diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:05 -0600 |
commit | 74a2067d286867e313f736d6733407586b71195e (patch) | |
tree | 182ea565d6909db1541424e4ffb3168b4b139c21 /konq-plugins/rsync | |
parent | 081670a12774435ae60cf8eba9226b91d27852b3 (diff) | |
download | tdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'konq-plugins/rsync')
-rw-r--r-- | konq-plugins/rsync/rsyncplugin.cpp | 4 | ||||
-rw-r--r-- | konq-plugins/rsync/rsyncplugin.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/konq-plugins/rsync/rsyncplugin.cpp b/konq-plugins/rsync/rsyncplugin.cpp index d337287..390f8a7 100644 --- a/konq-plugins/rsync/rsyncplugin.cpp +++ b/konq-plugins/rsync/rsyncplugin.cpp @@ -118,9 +118,9 @@ RsyncPlugin::RsyncPlugin (TQObject* parent, const char* name, if ( !m_part || !m_part->scrollWidget() ) return; - m_pSyncNow = new KAction(i18n("Synchronize F&older"), "syncnow", + m_pSyncNow = new TDEAction(i18n("Synchronize F&older"), "syncnow", actionCollection(), "syncnow"); - m_pSyncSetup = new KAction (i18n("Setup Syn&chronization"), "setupsync", + m_pSyncSetup = new TDEAction (i18n("Setup Syn&chronization"), "setupsync", actionCollection(), "setupsync"); m_pSyncNow->setIcon("remotesync"); m_pSyncSetup->setIcon("remotesyncconfig"); diff --git a/konq-plugins/rsync/rsyncplugin.h b/konq-plugins/rsync/rsyncplugin.h index af28935..cd4f20f 100644 --- a/konq-plugins/rsync/rsyncplugin.h +++ b/konq-plugins/rsync/rsyncplugin.h @@ -36,7 +36,7 @@ // and in a manner identical to these declarations, the plugin will // mysteriously fail when launched with kshell but work fine under BASH -class KActionMenu; +class TDEActionMenu; class KonqDirPart; class KLineEdit; @@ -65,8 +65,8 @@ private slots: private: KURL m_pURL; KonqDirPart* m_part; - KAction* m_pSyncNow; - KAction* m_pSyncSetup; + TDEAction* m_pSyncNow; + TDEAction* m_pSyncSetup; KRsync* m_rSync; }; #endif |