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