summaryrefslogtreecommitdiffstats
path: root/libk3b/core
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:04:05 -0600
commitba335c4be73ee8e3ae5c6084e889c003825cda44 (patch)
treeb3ce82a1c188b28ea94aa84c32db082c3434fc79 /libk3b/core
parent5183781c5dddd8447b308c24b2d7f9257bd0bcad (diff)
downloadk3b-ba335c4be73ee8e3ae5c6084e889c003825cda44.tar.gz
k3b-ba335c4be73ee8e3ae5c6084e889c003825cda44.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'libk3b/core')
-rw-r--r--libk3b/core/k3bprocess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/core/k3bprocess.cpp b/libk3b/core/k3bprocess.cpp
index ca8d2e0..c46fd0a 100644
--- a/libk3b/core/k3bprocess.cpp
+++ b/libk3b/core/k3bprocess.cpp
@@ -192,7 +192,7 @@ TQStringList K3bProcess::splitOutput( char* data, int len,
// check if line ends with a newline
// if not save the last line because it is not finished
TQChar c = buffer.right(1).at(0);
- bool hasUnfinishedLine = ( c != '\n' && c != '\r' && c != TQChar(46) ); // What is tqunicode 46?? It is printed as a point
+ bool hasUnfinishedLine = ( c != '\n' && c != '\r' && c != TQChar(46) ); // What is unicode 46?? It is printed as a point
if( hasUnfinishedLine ) {
kdDebug() << "(K3bProcess) found unfinished line: '" << lines.last() << "'" << endl;
kdDebug() << "(K3bProcess) last char: '" << buffer.right(1) << "'" << endl;