summaryrefslogtreecommitdiffstats
path: root/libtdepim
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:19:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:19:51 -0600
commite1502794762192b7275d19eaf99073e6e05ada0b (patch)
tree3faa50875697deee6380ee7ffda7dedb6d7fe2da /libtdepim
parent65f459228e774ea4babeca0c9704c3062c8ce4a4 (diff)
downloadtdepim-e1502794762192b7275d19eaf99073e6e05ada0b.tar.gz
tdepim-e1502794762192b7275d19eaf99073e6e05ada0b.zip
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'libtdepim')
-rw-r--r--libtdepim/kscoring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtdepim/kscoring.cpp b/libtdepim/kscoring.cpp
index 94e8c155..fc156436 100644
--- a/libtdepim/kscoring.cpp
+++ b/libtdepim/kscoring.cpp
@@ -890,7 +890,7 @@ void KScoringManager::createInternalFromXML(TQDomNode n)
addRuleInternal(cR);
}
else if (s == "Group") {
- Q_CHECK_PTR(cR);
+ TQ_CHECK_PTR(cR);
cR->addGroup( e.attribute("name") );
}
else if (s == "Expression") {
@@ -900,7 +900,7 @@ void KScoringManager::createInternalFromXML(TQDomNode n)
e.attribute("neg")));
}
else if (s == "Action") {
- Q_CHECK_PTR(cR);
+ TQ_CHECK_PTR(cR);
cR->addAction(ActionBase::getTypeForName(e.attribute("type")),
e.attribute("value"));
}