diff options
author | Darrell Anderson <[email protected]> | 2014-01-15 17:20:20 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-01-15 17:20:20 -0600 |
commit | 80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65 (patch) | |
tree | d200f3206607ae1a50c7873a80ab5ffd325d6c2a /tdefilereplace/tdefilereplace.cpp | |
parent | b23d738404d2fdf3445371a97fa267646b294394 (diff) | |
download | tdewebdev-80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65.tar.gz tdewebdev-80f849ebbb4bac48afd2bf50f0e8af2ffd9e4a65.zip |
Finish renaming KFileReplace->TDEFileReplace and fix related Quanta Plus internal references.
Diffstat (limited to 'tdefilereplace/tdefilereplace.cpp')
-rw-r--r-- | tdefilereplace/tdefilereplace.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tdefilereplace/tdefilereplace.cpp b/tdefilereplace/tdefilereplace.cpp index 24ead465..8cb7d332 100644 --- a/tdefilereplace/tdefilereplace.cpp +++ b/tdefilereplace/tdefilereplace.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - tdefilereplace.cpp - KFileReplace shell implementation + tdefilereplace.cpp - TDEFileReplace shell implementation ------------------- begin : Thu Sep 16 14:14:09 2004 copyright : (C) 2004 by Andras Mantia <[email protected]> @@ -24,8 +24,8 @@ //app includes #include "tdefilereplace.h" -KFileReplace::KFileReplace() - : KParts::MainWindow(0L, "KFileReplace") +TDEFileReplace::TDEFileReplace() + : KParts::MainWindow(0L, "TDEFileReplace") { KLibFactory *factory = KLibLoader::self()->factory("libtdefilereplacepart"); if (factory) @@ -46,23 +46,23 @@ KFileReplace::KFileReplace() } else { - KMessageBox::error(this, i18n("Could not find the KFileReplace part.")); + KMessageBox::error(this, i18n("Could not find the TDEFileReplace part.")); close(); return; } } -KFileReplace::~KFileReplace() +TDEFileReplace::~TDEFileReplace() { } -void KFileReplace::openURL(const KURL &url) +void TDEFileReplace::openURL(const KURL &url) { m_part->openURL(url); } -void KFileReplace::slotConfigureKeys() +void TDEFileReplace::slotConfigureKeys() { KKeyDialog dlg( false, this ); TQPtrList<KXMLGUIClient> clients = guiFactory()->clients(); @@ -74,7 +74,7 @@ void KFileReplace::slotConfigureKeys() dlg.configure(); } -void KFileReplace::slotConfigureToolbars() +void TDEFileReplace::slotConfigureToolbars() { saveMainWindowSettings(TDEGlobal::config(), autoSaveGroup()); KEditToolbar dlg(factory()); @@ -83,13 +83,13 @@ void KFileReplace::slotConfigureToolbars() dlg.exec(); } -void KFileReplace::applyNewToolbarConfig() +void TDEFileReplace::applyNewToolbarConfig() { applyMainWindowSettings(TDEGlobal::config(), autoSaveGroup()); } -void KFileReplace::removeDuplicatedActions() +void TDEFileReplace::removeDuplicatedActions() { TDEActionCollection* part_action_collection = m_part->actionCollection(); TDEAction* part_about_action = part_action_collection->action("help_about_tdefilereplace"); |