Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 3, 2010, 3:55:39 PM (16 years ago)
Author:
rgrieder
Message:

Fixed typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gamestate/src/modules/questsystem/QuestManager.h

    r6417 r6440  
    5252    /**
    5353    @brief
    54         Is a Singleton and manages Quests, by registering every Quest/QuestHint (through registerX()) and making them globally accessable (through findX()).
     54        Is a Singleton and manages Quests, by registering every Quest/QuestHint (through registerX()) and making them globally accessible (through findX()).
    5555        Quests (and QuestHints) are registered in the QuestManager with their id, and can be accessed in the same way.
    5656    @author
     
    7272            static QuestManager& getInstance() { return Singleton<QuestManager>::getInstance(); } // tolua_export
    7373
    74             //! Retreive the main window for the GUI.
     74            //! Retrieve the main window for the GUI.
    7575            CEGUI::Window* getQuestGUI(const std::string & guiName); // tolua_export
    7676
     
    8282
    8383        protected:
    84             std::map<std::string, Quest*> & getQuests(void); //!< Retreive all Quests.
     84            std::map<std::string, Quest*> & getQuests(void); //!< Retrieve all Quests.
    8585
    8686        private:
    8787            static QuestManager* singletonPtr_s;
    88             PlayerInfo* retreivePlayer(const std::string & guiName); //!< Retrieve the player for a certain GUI.
     88            PlayerInfo* retrievePlayer(const std::string & guiName); //!< Retrieve the player for a certain GUI.
    8989
    9090            std::map<std::string, Quest*> questMap_; //!< All Quests registered by their id's.
Note: See TracChangeset for help on using the changeset viewer.