Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 25, 2011, 3:07:17 AM (13 years ago)
Author:
rgrieder
Message:

Applied C++ code changes to compile Orxonox with CEGUI 0.7 (does not run yet).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib/src/libraries/util/Exception.cc

    r7947 r7960  
    9595            throw;
    9696        }
    97         catch (const std::exception& ex)
    98         {
    99             return ex.what();
    100         }
    10197        catch (const CEGUI::Exception& ex)
    10298        {
    10399            return GeneralException(ex.getMessage().c_str(), ex.getLine(),
    104100                ex.getFileName().c_str(), ex.getName().c_str()).getDescription();
     101        }
     102        catch (const std::exception& ex)
     103        {
     104            return ex.what();
    105105        }
    106106        catch (...)
Note: See TracChangeset for help on using the changeset viewer.