Renamed all instance of AppCallback/AppVisitor to UpdateCallback/UpdateVisitor

inline with the decision to rename the "app phase" the "update phase".
This commit is contained in:
Robert Osfield
2002-12-19 15:55:40 +00:00
parent eb42926ab1
commit adf5c91808
44 changed files with 239 additions and 205 deletions

View File

@@ -7,12 +7,12 @@ DOFTransform::DOFTransform():
_animationOn(true),
_increasingFlags(0xffff)
{
setNumChildrenRequiringAppTraversal(1);
setNumChildrenRequiringUpdateTraversal(1);
}
void DOFTransform::traverse(NodeVisitor& nv)
{
if (nv.getVisitorType()==NodeVisitor::APP_VISITOR)
if (nv.getVisitorType()==NodeVisitor::UPDATE_VISITOR)
{
animate();
}