summaryrefslogtreecommitdiffstats
path: root/kresources/kolab
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /kresources/kolab
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
Diffstat (limited to 'kresources/kolab')
-rw-r--r--kresources/kolab/kabc/contact.cpp2
-rw-r--r--kresources/kolab/kcal/event.cpp2
-rw-r--r--kresources/kolab/kcal/journal.cpp6
-rw-r--r--kresources/kolab/kcal/task.cpp2
-rw-r--r--kresources/kolab/knotes/note.cpp2
-rw-r--r--kresources/kolab/shared/kolabbase.cpp4
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;
}