summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/kcontrol
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
commitc509088a31cffd8e6d25c00a00414025426fc737 (patch)
tree06242637d2244aa79ad8812f39e64005ffc5ea91 /kmrml/kmrml/kcontrol
parent913e257dbbebe29c4f356ebb9fc6e888d0d1ac75 (diff)
downloadtdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.tar.gz
tdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.zip
Rename additional global TQt functions
Diffstat (limited to 'kmrml/kmrml/kcontrol')
-rw-r--r--kmrml/kmrml/kcontrol/indexer.cpp10
-rw-r--r--kmrml/kmrml/kcontrol/indextest.cpp4
2 files changed, 7 insertions, 7 deletions
diff --git a/kmrml/kmrml/kcontrol/indexer.cpp b/kmrml/kmrml/kcontrol/indexer.cpp
index 3f479ee6..307cff95 100644
--- a/kmrml/kmrml/kcontrol/indexer.cpp
+++ b/kmrml/kmrml/kcontrol/indexer.cpp
@@ -102,7 +102,7 @@ void Indexer::processNext()
if ( index != -1 )
cmd.replace( index, 2, TQUOTE(m_currentDir + "_thumbnails") );
-// qDebug("****** command: %s", cmd.latin1());
+// tqDebug("****** command: %s", cmd.latin1());
#if TDE_VERSION >= 306
*m_process << cmd;
#else
@@ -139,9 +139,9 @@ void Indexer::slotCanRead( KProcIO *proc )
// cut off "PROGRESS: "
line = line.mid( sprogress.length() );
line = line.simplifyWhiteSpace().stripWhiteSpace();
-// qDebug("*** START LINE ***");
-// qDebug("%s", line.latin1());
-// qDebug("*** END LINE ***");
+// tqDebug("*** START LINE ***");
+// tqDebug("%s", line.latin1());
+// tqDebug("*** END LINE ***");
// case 1: image processing, below 99%
if ( line.at( line.length() -1 ) == ')' )
@@ -154,7 +154,7 @@ void Indexer::slotCanRead( KProcIO *proc )
TQString numFiles = regxp.cap( 2 );
TQString percent = regxp.cap( 3 );
-// qDebug( "current: %s, number: %s, percent: %s", currentFile.latin1(), numFiles.latin1(), percent.latin1());
+// tqDebug( "current: %s, number: %s, percent: %s", currentFile.latin1(), numFiles.latin1(), percent.latin1());
bool ok = false;
int perc = percent.toInt( &ok );
if ( ok )
diff --git a/kmrml/kmrml/kcontrol/indextest.cpp b/kmrml/kmrml/kcontrol/indextest.cpp
index fdaffcde..f6eaa34b 100644
--- a/kmrml/kmrml/kcontrol/indextest.cpp
+++ b/kmrml/kmrml/kcontrol/indextest.cpp
@@ -26,12 +26,12 @@ IndexTest::~IndexTest()
void IndexTest::slotFinished( bool success )
{
- qDebug("##### FINISHED: %i", success );
+ tqDebug("##### FINISHED: %i", success );
}
void IndexTest::slotProgress( int percent, const TQString& message )
{
- qDebug("--- progress: %i: %s", percent, message.latin1());
+ tqDebug("--- progress: %i: %s", percent, message.latin1());
}
int main( int argc, char **argv )