summaryrefslogtreecommitdiffstats
path: root/kresources/kolab/kcal
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/kolab/kcal')
-rw-r--r--kresources/kolab/kcal/event.cpp2
-rw-r--r--kresources/kolab/kcal/journal.cpp6
-rw-r--r--kresources/kolab/kcal/task.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/kresources/kolab/kcal/event.cpp b/kresources/kolab/kcal/event.cpp
index 5f85cde2..c15c567d 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 4957927a..acfc4e71 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 ccbb03e5..fe75845d 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;
}