src/lte/test/lte-simple-helper.cc
changeset 9703 681f35b212ff
parent 9382 a058179c3d9d
child 10410 4d4eb8097fa3
child 11317 27574410fff6
--- a/src/lte/test/lte-simple-helper.cc	Fri Apr 19 12:58:25 2013 -0700
+++ b/src/lte/test/lte-simple-helper.cc	Fri Apr 19 22:39:55 2013 +0200
@@ -45,13 +45,13 @@
 }
 
 void
-LteSimpleHelper::DoStart (void)
+LteSimpleHelper::DoInitialize (void)
 {
   NS_LOG_FUNCTION (this);
 
   m_phyChannel = CreateObject<SimpleChannel> ();
 
-  Object::DoStart ();
+  Object::DoInitialize ();
 }
 
 LteSimpleHelper::~LteSimpleHelper (void)
@@ -95,7 +95,7 @@
 LteSimpleHelper::InstallEnbDevice (NodeContainer c)
 {
   NS_LOG_FUNCTION (this);
-  Start ();  // will run DoStart () if necessary
+  Initialize ();  // will run DoInitialize () if necessary
   NetDeviceContainer devices;
   for (NodeContainer::Iterator i = c.Begin (); i != c.End (); ++i)
     {