From: <qua...@us...> - 2010-02-03 15:11:12
|
Revision: 113 http://stdair.svn.sourceforge.net/stdair/?rev=113&view=rev Author: quannaus Date: 2010-02-03 15:11:00 +0000 (Wed, 03 Feb 2010) Log Message: ----------- [dev] Some small changes in the display. Modified Paths: -------------- trunk/stdair/stdair/bom/BookingClass.cpp trunk/stdair/stdair/bom/FlightDateKey.cpp Modified: trunk/stdair/stdair/bom/BookingClass.cpp =================================================================== --- trunk/stdair/stdair/bom/BookingClass.cpp 2010-02-03 14:09:48 UTC (rev 112) +++ trunk/stdair/stdair/bom/BookingClass.cpp 2010-02-03 15:11:00 UTC (rev 113) @@ -44,12 +44,12 @@ // ////////////////////////////////////////////////////////////////////// const std::string BookingClass::describeKey() const { - return _bookingClassStructure.describeKey(); + return _key.describe(); } // ////////////////////////////////////////////////////////////////////// const std::string BookingClass::describeShortKey() const { - return _bookingClassStructure.describeShortKey(); + return _key.toString(); } } Modified: trunk/stdair/stdair/bom/FlightDateKey.cpp =================================================================== --- trunk/stdair/stdair/bom/FlightDateKey.cpp 2010-02-03 14:09:48 UTC (rev 112) +++ trunk/stdair/stdair/bom/FlightDateKey.cpp 2010-02-03 15:11:00 UTC (rev 113) @@ -34,7 +34,7 @@ // //////////////////////////////////////////////////////////////////// const std::string FlightDateKey_T::toString() const { std::ostringstream oStr; - oStr << _parentKey.toString() << _flightNumber << " " << _flightDate; + oStr << _flightNumber << ", " << _flightDate; return oStr.str(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |