summaryrefslogtreecommitdiffstats
path: root/ksirc/kstextview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:34:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:34:45 -0600
commit6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71 (patch)
tree35c87e21025b800ecd5840f96a9638c964e930b8 /ksirc/kstextview.cpp
parentb251e315b57c6665336289a940e9b1d4a179e463 (diff)
downloadtdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.tar.gz
tdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.zip
Rename additional global TQt functions
Diffstat (limited to 'ksirc/kstextview.cpp')
-rw-r--r--ksirc/kstextview.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/ksirc/kstextview.cpp b/ksirc/kstextview.cpp
index 7189a23a..1817c4e8 100644
--- a/ksirc/kstextview.cpp
+++ b/ksirc/kstextview.cpp
@@ -54,7 +54,7 @@ TQPixmap ksTextViewLoadPixmap( const TQString &icon )
{
ksTextViewPixmapDict = new TQDict<TQPixmap>;
ksTextViewPixmapDict->setAutoDelete( true );
- qAddPostRoutine( cleanupKSTextViewPixmapDict );
+ tqAddPostRoutine( cleanupKSTextViewPixmapDict );
}
TQPixmap *pix = ksTextViewPixmapDict->find( icon );
@@ -536,14 +536,14 @@ Tokenizer::Tokenizer( PString &text )
: m_text( text.data ), m_tags( text.tags ),
m_textBeforeFirstTagProcessed( false ), m_done( false )
{
- //qDebug( "Tokenizer::Tokenizer( %s )", m_text.ascii() );
+ //tqDebug( "Tokenizer::Tokenizer( %s )", m_text.ascii() );
m_lastTag = m_tags.begin();
if ( !m_tags.isEmpty() ) {
if ( ( *m_tags.begin() ).type != TagIndex::Open ) {
- qDebug( "something went awfully wrong! bailing out with an assertion" );
- qDebug( "text input was: %s", text.data.ascii() );
+ tqDebug( "something went awfully wrong! bailing out with an assertion" );
+ tqDebug( "text input was: %s", text.data.ascii() );
}
assert( ( *m_tags.begin() ).type == TagIndex::Open );
}
@@ -620,7 +620,7 @@ bool Tokenizer::parseNextToken( Token &tok )
{
if ( m_done )
{
- //qDebug( "Tokenizer: premature end" );
+ //tqDebug( "Tokenizer: premature end" );
return false;
}
@@ -706,7 +706,7 @@ bool Tokenizer::parseNextToken( Token &tok )
return true;
}
else {
- qDebug( "EEK, this should never happen. input text was: %s", m_text.ascii() );
+ tqDebug( "EEK, this should never happen. input text was: %s", m_text.ascii() );
assert( false );
}
@@ -851,14 +851,14 @@ void Tokenizer::parseTag( const StringPtr &text,
{
if ( ch == '=' ) // eh?
{
- qDebug( "EH?" );
+ tqDebug( "EH?" );
++p;
continue;
}
if ( key.isNull() )
{
- qDebug( "Tokenizer: Error, attribute value without key." );
+ tqDebug( "Tokenizer: Error, attribute value without key." );
// reset
state = ScanForName;
++p;
@@ -884,7 +884,7 @@ void Tokenizer::parseTag( const StringPtr &text,
if(start == 0x0) {
state = ScanForName;
- qDebug( "Never found start \" in tag." );
+ tqDebug( "Never found start \" in tag." );
++p;
continue;
}