Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

It compiles now on tardis..

Location:
code/branches/gui/src/core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/core/CMakeLists.txt

    r1638 r1645  
    5757ADD_CUSTOM_COMMAND(
    5858  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc
    59   COMMAND ${TOLUA_EXE} -n core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg
     59  COMMAND ${TOLUA_EXE} -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg
    6060  DEPENDS tolua
    6161  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
  • code/branches/gui/src/core/Exception.h

    r1642 r1645  
    100100        }
    101101
    102         ~SpecificException() { }
     102        ~SpecificException() throw() { }
    103103
    104104        ExceptionType getType() const { return Type; }
     
    133133#ifndef NDEBUG
    134134#define OrxAssert(condition, errorMessage) \
    135     condition ? ((void)0) : (orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \
    136     assert(condition);
     135    condition ? ((void)0) : (void)(orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \
     136    assert(condition)
    137137#else
    138138#define OrxAssert(condition, errorMessage)  ((void)0)
  • code/branches/gui/src/core/input/InputManager.cc

    r1642 r1645  
    8686        , stateCalibrator_(0)
    8787        , stateEmpty_(0)
     88        , bCalibrating_(false)
    8889        , keyboardModifiers_(0)
    89         , bCalibrating_(false)
    9090    {
    9191        RegisterRootObject(InputManager);
  • code/branches/gui/src/core/input/InputManager.h

    r1642 r1645  
    8585    {
    8686        // --> setConfigValues is private
    87         friend ClassIdentifier<InputManager>;
     87        friend class ClassIdentifier<InputManager>;
    8888        // let Core class use tick(.)
    89         friend Core;
     89        friend class Core;
    9090
    9191    public:
Note: See TracChangeset for help on using the changeset viewer.