diff --git a/src/mobility/hierarchical-mobility-model.cc b/src/mobility/hierarchical-mobility-model.cc index 88b4137f6..0ed568beb 100644 --- a/src/mobility/hierarchical-mobility-model.cc +++ b/src/mobility/hierarchical-mobility-model.cc @@ -58,7 +58,7 @@ HierarchicalMobilityModel::SetChild (Ptr model) notifier = CreateObject (); m_child->AggregateObject (notifier); } - notifier->TraceSourceConnect ("CourseChanged", MakeCallback (&HierarchicalMobilityModel::ChildChanged, this)); + notifier->TraceSourceConnect ("CourseChange", MakeCallback (&HierarchicalMobilityModel::ChildChanged, this)); } void @@ -72,7 +72,7 @@ HierarchicalMobilityModel::SetParent (Ptr model) notifier = CreateObject (); m_parent->AggregateObject (notifier); } - notifier->TraceSourceConnect ("CourseChanged", MakeCallback (&HierarchicalMobilityModel::ParentChanged, this)); + notifier->TraceSourceConnect ("CourseChange", MakeCallback (&HierarchicalMobilityModel::ParentChanged, this)); }