Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 23, 2008, 7:31:40 PM (16 years ago)
Author:
rgrieder
Message:

It compiles now on tardis..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/gui/GUIManager.cc

    r1642 r1645  
    126126            catch (CEGUI::Exception& ex)
    127127            {
     128#if CEGUI_VERSION_MINOR < 6
     129                throw GeneralException(ex.getMessage().c_str());
     130#else
    128131                throw GeneralException(ex.getMessage().c_str(), ex.getLine(),
    129132                    ex.getFileName().c_str(), ex.getName().c_str());
     133#endif
    130134            }
    131135
     
    166170        catch (CEGUI::Exception& ex)
    167171        {
     172#if CEGUI_VERSION_MINOR < 6
     173            throw GeneralException(ex.getMessage().c_str());
     174#else
    168175            throw GeneralException(ex.getMessage().c_str(), ex.getLine(),
    169176                ex.getFileName().c_str(), ex.getName().c_str());
     177#endif
    170178        }
    171179    }
Note: See TracChangeset for help on using the changeset viewer.