Changeset 7947 for code/branches/kicklib/src/libraries/util/Exception.cc
- Timestamp:
- Feb 21, 2011, 4:35:28 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/libraries/util/Exception.cc
r7401 r7947 101 101 catch (const CEGUI::Exception& ex) 102 102 { 103 #if CEGUI_VERSION_MAJOR == 0 && CEGUI_VERSION_MINOR < 6104 return GeneralException(ex.getMessage().c_str()).getDescription();105 #else106 103 return GeneralException(ex.getMessage().c_str(), ex.getLine(), 107 104 ex.getFileName().c_str(), ex.getName().c_str()).getDescription(); 108 #endif109 105 } 110 106 catch (...)
Note: See TracChangeset
for help on using the changeset viewer.