diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:25:33 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:25:33 -0600 |
commit | 604bf3f969d880708ea9a1affce0b304c29e6ff5 (patch) | |
tree | e8fad7142f5d23041b1c9e6c2a1d0d8c814b0ebe /libktorrent/util | |
parent | 93f5eb31173901d14b4376614f89d43973ddd45b (diff) | |
download | ktorrent-604bf3f969d880708ea9a1affce0b304c29e6ff5.tar.gz ktorrent-604bf3f969d880708ea9a1affce0b304c29e6ff5.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'libktorrent/util')
-rw-r--r-- | libktorrent/util/autorotatelogjob.cpp | 2 | ||||
-rw-r--r-- | libktorrent/util/log.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/util/autorotatelogjob.cpp b/libktorrent/util/autorotatelogjob.cpp index de4d1c5..c703026 100644 --- a/libktorrent/util/autorotatelogjob.cpp +++ b/libktorrent/util/autorotatelogjob.cpp @@ -70,7 +70,7 @@ namespace bt else { // final log file is moved, now zip it and end the job - std::system(TQString("gzip " + KProcess::quote(file + "-1")).local8Bit()); + std::system(TQString("gzip " + TDEProcess::quote(file + "-1")).local8Bit()); m_error = 0; lg->logRotateDone(); emitResult(); diff --git a/libktorrent/util/log.cpp b/libktorrent/util/log.cpp index 2fb36f9..258506a 100644 --- a/libktorrent/util/log.cpp +++ b/libktorrent/util/log.cpp @@ -87,7 +87,7 @@ namespace bt // move current log to 1 and zip it bt::Move(file,file + "-1",true); - system(TQString("gzip " + KProcess::quote(file + "-1")).local8Bit()); + system(TQString("gzip " + TDEProcess::quote(file + "-1")).local8Bit()); } void setOutputFile(const TQString & file) |