From b6ba5d642f3fc7d320e3d6f4650eb259a3a52b04 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:51:21 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/profileengine/lib/profileengine.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/profileengine/lib/profileengine.h') diff --git a/src/profileengine/lib/profileengine.h b/src/profileengine/lib/profileengine.h index d34f9e02..6404e48f 100644 --- a/src/profileengine/lib/profileengine.h +++ b/src/profileengine/lib/profileengine.h @@ -177,8 +177,8 @@ public: template void walkProfiles(Operation &op, Profile *root) { - TQValueList tqchildren = root->tqchildren(); - for (TQValueList::iterator it = tqchildren.begin(); it != tqchildren.end(); ++it) + TQValueList children = root->children(); + for (TQValueList::iterator it = children.begin(); it != children.end(); ++it) { op(*it); walkProfiles(op, *it); @@ -244,8 +244,8 @@ public: template void walkProfiles(Operation &op, Result *result, Profile *root) { - TQValueList tqchildren = root->tqchildren(); - for (TQValueList::iterator it = tqchildren.begin(); it != tqchildren.end(); ++it) + TQValueList children = root->children(); + for (TQValueList::iterator it = children.begin(); it != children.end(); ++it) { Result *newResult = op(result, *it); walkProfiles(op, newResult, *it); -- cgit v1.2.1