Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 23, 2009, 11:31:02 PM (15 years ago)
Author:
rgrieder
Message:

Removed almost everything. Should be working already, but not yet tested on Unix.

Location:
code/trunk/src/libraries/util
Files:
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/util/CMakeLists.txt

    r5749 r5774  
    1919
    2020SET_SOURCE_FILES(UTIL_SRC_FILES
    21   Clipboard.cc
    2221  CRC32.cc
    2322  Exception.cc
  • code/trunk/src/libraries/util/Exception.cc

    r5747 r5774  
    3434
    3535#include "Exception.h"
    36 #include <CEGUIExceptions.h>
    3736
    3837namespace orxonox
     
    106105            return ex.what();
    107106        }
    108         catch (const CEGUI::Exception& ex)
    109         {
    110 #if CEGUI_VERSION_MAJOR == 0 && CEGUI_VERSION_MINOR < 6
    111             return GeneralException(ex.getMessage().c_str()).getDescription();
    112 #else
    113             return GeneralException(ex.getMessage().c_str(), ex.getLine(),
    114                 ex.getFileName().c_str(), ex.getName().c_str()).getDescription();
    115 #endif
    116         }
    117107        catch (...)
    118108        {
Note: See TracChangeset for help on using the changeset viewer.