diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:31:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 02:31:27 -0600 |
commit | 28ccd51885bd98e62c1756453c3fc638b429e5ee (patch) | |
tree | 309d7dfbc38b1253fc2aceca34036f8f4eedd27b /filesharing/advanced/propsdlgplugin | |
parent | 8a9ab45627c50ab0d33e9edf86fe8988e02709cb (diff) | |
download | tdenetwork-28ccd51885bd98e62c1756453c3fc638b429e5ee.tar.gz tdenetwork-28ccd51885bd98e62c1756453c3fc638b429e5ee.zip |
Additional kde to tde renaming
Diffstat (limited to 'filesharing/advanced/propsdlgplugin')
-rw-r--r-- | filesharing/advanced/propsdlgplugin/propertiespage.cpp | 8 | ||||
-rw-r--r-- | filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/filesharing/advanced/propsdlgplugin/propertiespage.cpp b/filesharing/advanced/propsdlgplugin/propertiespage.cpp index 24efa0e5..b52fd8fc 100644 --- a/filesharing/advanced/propsdlgplugin/propertiespage.cpp +++ b/filesharing/advanced/propsdlgplugin/propertiespage.cpp @@ -179,7 +179,7 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool nfsFile->saveTo(nfsFileName); } else { nfsNeedsKDEsu = true; - kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs needs kdesu." << endl; + kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs needs tdesu." << endl; } } else kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: nfs has not changed." << endl; @@ -192,7 +192,7 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool sambaFile->saveTo(sambaFileName); } else { sambaNeedsKDEsu = true; - kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba needs kdesu." << endl; + kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba needs tdesu." << endl; } } else kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: samba has not changed." << endl; @@ -222,10 +222,10 @@ bool PropertiesPage::save(NFSFile* nfsFile, SambaFile* sambaFile, bool nfs, bool .tqarg(KProcess::quote( sambaFileName )); } - proc<<"kdesu" << "-d" << "-c"<<command; + proc<<"tdesu" << "-d" << "-c"<<command; if (!proc.start(KProcess::Block, true)) { - kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: kdesu command failed" << endl; + kdDebug(FILESHARE_DEBUG) << "PropertiesPage::save: tdesu command failed" << endl; return false; } } diff --git a/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp b/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp index 93a9a6e8..2af403f5 100644 --- a/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp +++ b/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp @@ -101,7 +101,7 @@ PropsDlgSharePlugin::PropsDlgSharePlugin( KPropertiesDialog *dlg, void PropsDlgSharePlugin::slotConfigureFileSharing() { KProcess proc; - proc << KStandardDirs::findExe("kdesu") << locate("exe", "kcmshell") << "fileshare"; + proc << KStandardDirs::findExe("tdesu") << locate("exe", "kcmshell") << "fileshare"; proc.start( KProcess::DontCare ); } |