diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
commit | c48e769eb275917717e2b55eb869f7e559293ac8 (patch) | |
tree | 8f650b907e21c918b826f854dbe1c8174cc2c0c6 /filesharing/advanced/nfs/nfsfile.cpp | |
parent | 8011d84f483f3628f3f04ea5cb2c1c3c86b2dba7 (diff) | |
download | tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.tar.gz tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'filesharing/advanced/nfs/nfsfile.cpp')
-rw-r--r-- | filesharing/advanced/nfs/nfsfile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filesharing/advanced/nfs/nfsfile.cpp b/filesharing/advanced/nfs/nfsfile.cpp index 9a1c787b..58c62ca8 100644 --- a/filesharing/advanced/nfs/nfsfile.cpp +++ b/filesharing/advanced/nfs/nfsfile.cpp @@ -241,8 +241,8 @@ bool NFSFile::save() KProcIO proc; TQString command = TQString("cp %1 %2") - .arg(KProcess::quote( tempFile.name() )) - .arg(KProcess::quote( _url.path() )); + .arg(TDEProcess::quote( tempFile.name() )) + .arg(TDEProcess::quote( _url.path() )); if (restartNFSServer) command +=";exportfs -ra"; @@ -250,7 +250,7 @@ bool NFSFile::save() if (!TQFileInfo(_url.path()).isWritable() ) proc<<"tdesu" << "-d" << "-c"<<command; - if (!proc.start(KProcess::Block, true)) { + if (!proc.start(TDEProcess::Block, true)) { return false; } |