From: <qua...@us...> - 2009-10-02 13:07:55
|
Revision: 13 http://stdair.svn.sourceforge.net/stdair/?rev=13&view=rev Author: quannaus Date: 2009-10-02 13:07:47 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Small change in some functions. Modified Paths: -------------- trunk/stdair/stdair/bom/BomIterator.hpp Modified: trunk/stdair/stdair/bom/BomIterator.hpp =================================================================== --- trunk/stdair/stdair/bom/BomIterator.hpp 2009-10-02 13:02:56 UTC (rev 12) +++ trunk/stdair/stdair/bom/BomIterator.hpp 2009-10-02 13:07:47 UTC (rev 13) @@ -120,7 +120,7 @@ /** Default copy constructor. */ BomConstIterator_T (const BomConstIterator_T& iBomIterator) - : Parent_T (iBomIterator._itBomStructureObject) { } + : Parent_T (iBomIterator.Parent_T::_itBomStructureObject) { } /** Destructor. */ ~BomConstIterator_T() { } @@ -226,7 +226,7 @@ /** Default copy constructor. */ BomIterator_T (const BomIterator_T& iBomIterator) - : Parent_T (iBomIterator._itBomStructureObject) { } + : Parent_T (iBomIterator.Parent_T::_itBomStructureObject) { } /** Destructor. */ ~BomIterator_T() { } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |