diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:01 -0600 |
commit | 4c899296290a7499b75b1bd88267d53d7d690ffe (patch) | |
tree | c08d380471f924338a10031b9d810d38af7c852a /filesharing | |
parent | 7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351 (diff) | |
download | tdenetwork-4c899296290a7499b75b1bd88267d53d7d690ffe.tar.gz tdenetwork-4c899296290a7499b75b1bd88267d53d7d690ffe.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'filesharing')
-rw-r--r-- | filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp | 2 | ||||
-rw-r--r-- | filesharing/simple/fileshare.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp b/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp index 96b1f198..41c3bd71 100644 --- a/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp +++ b/filesharing/advanced/propsdlgplugin/propsdlgshareplugin.cpp @@ -101,7 +101,7 @@ PropsDlgSharePlugin::PropsDlgSharePlugin( KPropertiesDialog *dlg, void PropsDlgSharePlugin::slotConfigureFileSharing() { TDEProcess proc; - proc << KStandardDirs::findExe("tdesu") << locate("exe", "tdecmshell") << "fileshare"; + proc << TDEStandardDirs::findExe("tdesu") << locate("exe", "tdecmshell") << "fileshare"; proc.start( TDEProcess::DontCare ); } diff --git a/filesharing/simple/fileshare.cpp b/filesharing/simple/fileshare.cpp index 6f39975a..d2f49515 100644 --- a/filesharing/simple/fileshare.cpp +++ b/filesharing/simple/fileshare.cpp @@ -82,8 +82,8 @@ KFileShareConfig::KFileShareConfig(TQWidget *parent, const char *name, const TQS TQString path = TQString::fromLocal8Bit( getenv( "PATH" ) ); path += TQString::fromLatin1(":/usr/sbin"); - TQString sambaExec = KStandardDirs::findExe( TQString::fromLatin1("smbd"), path ); - TQString nfsExec = KStandardDirs::findExe( TQString::fromLatin1("rpc.nfsd"), path ); + TQString sambaExec = TDEStandardDirs::findExe( TQString::fromLatin1("smbd"), path ); + TQString nfsExec = TDEStandardDirs::findExe( TQString::fromLatin1("rpc.nfsd"), path ); if ( nfsExec.isEmpty() && sambaExec.isEmpty()) { |