From: <qua...@us...> - 2009-10-02 13:14:05
|
Revision: 14 http://stdair.svn.sourceforge.net/stdair/?rev=14&view=rev Author: quannaus Date: 2009-10-02 13:13:59 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Small change in some functions. Modified Paths: -------------- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp trunk/stdair/stdair/bom/BomIterator.hpp Modified: trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp =================================================================== --- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:07:47 UTC (rev 13) +++ trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:13:59 UTC (rev 14) @@ -112,7 +112,7 @@ /** Initialise the internal iterators on bom objects: return the iterator at the begining of the list. */ ListIterator_T listIteratorBegin () const { - return ListIterator_T(_bomChildrenOrderedList.begin()); + return _bomChildrenOrderedList.begin(); } /** Initialise the internal iterators on bom objects: Modified: trunk/stdair/stdair/bom/BomIterator.hpp =================================================================== --- trunk/stdair/stdair/bom/BomIterator.hpp 2009-10-02 13:07:47 UTC (rev 13) +++ trunk/stdair/stdair/bom/BomIterator.hpp 2009-10-02 13:13:59 UTC (rev 14) @@ -112,8 +112,7 @@ public: /** Normal constructor. */ - BomConstIterator_T (ITERATOR iIterator) - : Parent_T (iIterator) { } + BomConstIterator_T (ITERATOR iIterator) : Parent_T (iIterator) { } /** Default constructor. */ BomConstIterator_T () { } @@ -218,8 +217,7 @@ public: /** Normal constructor. */ - BomIterator_T (ITERATOR iIterator) - : Parent_T (iIterator) { } + BomIterator_T (ITERATOR iIterator) : Parent_T (iIterator) { } /** Default constructor. */ BomIterator_T () { } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |