Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Small style changes (no code changes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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);
Note: See TracChangeset for help on using the changeset viewer.