Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 18, 2009, 11:13:47 AM (14 years ago)
Author:
rgrieder
Message:
  • Fixed typing error in a cmake file causing a rebuild of the compilations every time CMake was run
  • Found spelling mistakes in InputManager.h
  • Found tabs in Test.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/Test.cc

    r5929 r6084  
    3636namespace orxonox
    3737{
    38         CreateFactory ( Test );
     38    CreateFactory ( Test );
    3939 
    4040  SetConsoleCommand(Test, printV1, true).accessLevel(AccessLevel::User);
     
    5656  Test* Test::instance_ = 0;
    5757
    58         Test::Test(BaseObject* creator) : BaseObject(creator), Synchronisable(creator)
    59         {
     58    Test::Test(BaseObject* creator) : BaseObject(creator), Synchronisable(creator)
     59    {
    6060    assert(instance_==0);
    6161    instance_=this;
    62                 RegisterObject ( Test );
     62        RegisterObject ( Test );
    6363    setConfigValues();
    6464    registerVariables();
    65                 setSyncMode(0x3);
    66         }
     65        setSyncMode(0x3);
     66    }
    6767
    68         Test::~Test()
    69         {
     68    Test::~Test()
     69    {
    7070    instance_=0;
    71         }
     71    }
    7272
    73         void Test::setConfigValues()
    74         {
    75                 SetConfigValue ( u1, 1 )/*.callback ( this, &Test::checkV1 )*/;
     73    void Test::setConfigValues()
     74    {
     75        SetConfigValue ( u1, 1 )/*.callback ( this, &Test::checkV1 )*/;
    7676    SetConfigValue ( u2, 2 )/*.callback ( this, &Test::checkV2 )*/;
    7777    SetConfigValue ( u3, 3 )/*.callback ( this, &Test::checkV3 )*/;
     
    8282    SetConfigValue ( s3, 3 )/*.callback ( this, &Test::checkV3 )*/;
    8383    SetConfigValue ( s4, 4 )/*.callback ( this, &Test::checkV4 )*/;
    84         }
     84    }
    8585
    8686
Note: See TracChangeset for help on using the changeset viewer.