Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 26, 2008, 2:13:17 PM (16 years ago)
Author:
rgrieder
Message:

merged hud branch back to trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/tinyxml/ticpp.cc

    r1505 r1625  
    2323*/
    2424
     25/*
     26Modifications by the orxonox team:
     27In function: void Document::Parse( const std::string& xml, bool throwIfParseError, TiXmlEncoding encoding )
     28     change: Added row and column number to the error description.
     29     author: Reto Grieder
     30*/
     31
    2532#ifdef TIXML_USE_TICPP
    2633
     
    853860        if( throwIfParseError && m_tiXmlPointer->Error() )
    854861        {
    855                 TICPPTHROW( "Error parsing xml: " << m_tiXmlPointer->ErrorDesc() );
     862                TICPPTHROW( "Error parsing xml: " << m_tiXmlPointer->ErrorDesc()
     863            << " In row " << m_tiXmlPointer->ErrorRow() << ", column " << m_tiXmlPointer->ErrorCol() << ".");
    856864        }
    857865}
Note: See TracChangeset for help on using the changeset viewer.