From 90a26d4d51396e7caba05c063c5ea45096f87477 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Wed, 5 Mar 2008 00:16:39 +0100 Subject: [PATCH] another typo in Attribute names. --- src/mobility/hierarchical-mobility-model.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); }