Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6190


Ignore:
Timestamp:
Dec 2, 2009, 9:02:49 AM (14 years ago)
Author:
rgrieder
Message:

Small style changes (no code changes).

Location:
code/branches/presentation2/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/libraries/core/GUIManager.cc

    r6183 r6190  
    5656#include "ConsoleCommand.h"
    5757#include "Core.h"
    58 #include "input/InputManager.h"
    5958#include "LuaState.h"
    6059#include "PathConfig.h"
  • code/branches/presentation2/src/libraries/core/LuaState.cc

    r6150 r6190  
    9292            sourceInfo = Resource::getInfo(filename, resourceGroup);
    9393
    94         // Continue search if not explicitely forbidden
     94        // Continue search if not explicitly forbidden
    9595        if (bSearchOtherPaths && sourceInfo == NULL)
    9696        {
     
    140140    void LuaState::doString(const std::string& code, const shared_ptr<ResourceInfo>& sourceFileInfo)
    141141    {
    142         // Save the oold source file info
     142        // Save the old source file info
    143143        shared_ptr<ResourceInfo> oldSourceFileInfo = sourceFileInfo_;
    144144        // Only override if sourceFileInfo provides useful information
  • code/branches/presentation2/src/libraries/core/Shell.cc

    r6180 r6190  
    6666        ConfigFileManager::getInstance().setFilename(this->commandHistoryConfigFileType_, "commandHistory.ini");
    6767
    68         // Use a stringstream object to buffer the output and get it line by line in update()
     68        // Use a stringstream object to buffer the output
    6969        this->outputStream_ = &this->outputBuffer_;
    7070
  • code/branches/presentation2/src/libraries/core/input/KeyBinderManager.h

    r5929 r6190  
    6060
    6161        //! Returns the currently selected KeyBinder
    62         KeyBinder*    getCurrent()
     62        KeyBinder* getCurrent()
    6363            { return this->currentBinder_; }
    6464        //! Like getCurrent(), but returns it as InputHandler* (so you don't have to include KeyBinder.h)
     
    6868
    6969        //! Returns the default KeyBinder
    70         KeyBinder*    getDefault()
     70        KeyBinder* getDefault()
    7171            { return binders_[this->defaultFilename_]; }
    7272        //! Returns the default KeyBinder as InputHandler* (so you don't have to include KeyBinder.h)
     
    8080
    8181        //! Returns a pointer to a KeyBinder (creates it if not yet loaded)
    82         KeyBinder*    get(const std::string& name);
     82        KeyBinder* get(const std::string& name);
    8383        //! Like get() but return value is of type InputHandler* (so you don't have to include KeyBinder.h)
    8484        InputHandler* getAsHandler(const std::string& name);
    8585
    8686        //! Loads a KeyBinder by creating it (no different from get() except for the return value)
    87         void load  (const std::string& filename);
     87        void load(const std::string& filename);
    8888        //! Destroys a KeyBinder completely (does nothing if not yet loaded)
    8989        void unload(const std::string& filename);
  • code/branches/presentation2/src/orxonox/sound/BaseSound.cc

    r6188 r6190  
    5555            assert(this->audioSource_ != 0);
    5656        }
    57        
    5857    }
    5958
  • code/branches/presentation2/src/orxonox/sound/SoundManager.cc

    r6186 r6190  
    504504        }
    505505    }
    506    
    507506}
Note: See TracChangeset for help on using the changeset viewer.