diff options
Diffstat (limited to 'kresources/kolab')
-rw-r--r-- | kresources/kolab/kabc/contact.cpp | 2 | ||||
-rw-r--r-- | kresources/kolab/kcal/event.cpp | 2 | ||||
-rw-r--r-- | kresources/kolab/kcal/journal.cpp | 6 | ||||
-rw-r--r-- | kresources/kolab/kcal/task.cpp | 2 | ||||
-rw-r--r-- | kresources/kolab/knotes/note.cpp | 2 | ||||
-rw-r--r-- | kresources/kolab/shared/kolabbase.cpp | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/kresources/kolab/kabc/contact.cpp b/kresources/kolab/kabc/contact.cpp index 796099025..a17c340b8 100644 --- a/kresources/kolab/kabc/contact.cpp +++ b/kresources/kolab/kabc/contact.cpp @@ -821,7 +821,7 @@ bool Contact::loadXML( const TQDomDocument& document ) mIsDistributionList = top.tagName() == "distribution-list"; if ( top.tagName() != "contact" && !mIsDistributionList ) { - qWarning( "XML error: Top tag was %s instead of the expected contact or distribution-list", + tqWarning( "XML error: Top tag was %s instead of the expected contact or distribution-list", top.tagName().ascii() ); return false; } diff --git a/kresources/kolab/kcal/event.cpp b/kresources/kolab/kcal/event.cpp index 5f85cde22..c15c567d8 100644 --- a/kresources/kolab/kcal/event.cpp +++ b/kresources/kolab/kcal/event.cpp @@ -157,7 +157,7 @@ bool Event::loadXML( const TQDomDocument& document ) TQDomElement top = document.documentElement(); if ( top.tagName() != "event" ) { - qWarning( "XML error: Top tag was %s instead of the expected event", + tqWarning( "XML error: Top tag was %s instead of the expected event", top.tagName().ascii() ); return false; } diff --git a/kresources/kolab/kcal/journal.cpp b/kresources/kolab/kcal/journal.cpp index 4957927a3..acfc4e71d 100644 --- a/kresources/kolab/kcal/journal.cpp +++ b/kresources/kolab/kcal/journal.cpp @@ -129,7 +129,7 @@ bool Journal::loadXML( const TQDomDocument& document ) TQDomElement top = document.documentElement(); if ( top.tagName() != "journal" ) { - qWarning( "XML error: Top tag was %s instead of the expected Journal", + tqWarning( "XML error: Top tag was %s instead of the expected Journal", top.tagName().ascii() ); return false; } @@ -141,10 +141,10 @@ bool Journal::loadXML( const TQDomDocument& document ) TQDomElement e = n.toElement(); if ( !loadAttribute( e ) ) { // Unhandled tag - save for later storage - //qDebug( "Unhandled tag: %s", e.toCString().data() ); + //tqDebug( "Unhandled tag: %s", e.toCString().data() ); } } else - qDebug( "Node is not a comment or an element???" ); + tqDebug( "Node is not a comment or an element???" ); } return true; diff --git a/kresources/kolab/kcal/task.cpp b/kresources/kolab/kcal/task.cpp index ccbb03e58..fe75845db 100644 --- a/kresources/kolab/kcal/task.cpp +++ b/kresources/kolab/kcal/task.cpp @@ -327,7 +327,7 @@ bool Task::loadXML( const TQDomDocument& document ) TQDomElement top = document.documentElement(); if ( top.tagName() != "task" ) { - qWarning( "XML error: Top tag was %s instead of the expected task", + tqWarning( "XML error: Top tag was %s instead of the expected task", top.tagName().ascii() ); return false; } diff --git a/kresources/kolab/knotes/note.cpp b/kresources/kolab/knotes/note.cpp index e456e43be..7df5b26b3 100644 --- a/kresources/kolab/knotes/note.cpp +++ b/kresources/kolab/knotes/note.cpp @@ -150,7 +150,7 @@ bool Note::loadXML( const TQDomDocument& document ) TQDomElement top = document.documentElement(); if ( top.tagName() != "note" ) { - qWarning( "XML error: Top tag was %s instead of the expected note", + tqWarning( "XML error: Top tag was %s instead of the expected note", top.tagName().ascii() ); return false; } diff --git a/kresources/kolab/shared/kolabbase.cpp b/kresources/kolab/shared/kolabbase.cpp index a0f32529f..167f2566a 100644 --- a/kresources/kolab/shared/kolabbase.cpp +++ b/kresources/kolab/shared/kolabbase.cpp @@ -370,7 +370,7 @@ bool KolabBase::load( const TQString& xml ) bool ok = document.setContent( xml, &errorMsg, &errorLine, &errorColumn ); if ( !ok ) { - qWarning( "Error loading document: %s, line %d, column %d", + tqWarning( "Error loading document: %s, line %d, column %d", errorMsg.latin1(), errorLine, errorColumn ); return false; } @@ -387,7 +387,7 @@ bool KolabBase::load( TQFile& xml ) bool ok = document.setContent( &xml, &errorMsg, &errorLine, &errorColumn ); if ( !ok ) { - qWarning( "Error loading document: %s, line %d, column %d", + tqWarning( "Error loading document: %s, line %d, column %d", errorMsg.latin1(), errorLine, errorColumn ); return false; } |