diff options
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 ); } |