Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5819


Ignore:
Timestamp:
Sep 28, 2009, 1:00:21 AM (15 years ago)
Author:
landauf
Message:

removed some tabs

Location:
code/branches/core5/src
Files:
4 edited

Legend:

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

    r5738 r5819  
    6262    {
    6363    public:
    64             void logEvent(const CEGUI::String& message, CEGUI::LoggingLevel level = CEGUI::Standard)
     64        void logEvent(const CEGUI::String& message, CEGUI::LoggingLevel level = CEGUI::Standard)
    6565        {
    6666            int orxonoxLevel = CEGUI::Standard;
  • code/branches/core5/src/libraries/core/MemoryArchive.cc

    r5738 r5819  
    119119
    120120    bool MemoryArchive::exists(const String& filename)
    121         {
     121    {
    122122        const FileMap& files = archives_s[this->getName()];
    123123        return files.find(filename) != files.end();
    124         }
     124    }
    125125
    126126    const Ogre::String& MemoryArchiveFactory::getType(void) const
  • code/branches/core5/src/libraries/core/Resource.h

    r5738 r5819  
    6464        // Docs by Ogre::ResourceGroupManager.h
    6565    public:
    66                 /**
     66        /**
    6767        @brief
    6868            Open a single resource by name and return a DataStream
     
    8181            Shared pointer to data stream containing the data. Will be
    8282            destroyed automatically when no longer referenced.
    83                 */
     83        */
    8484        static DataStreamPtr open(const std::string& name,
    8585            const std::string& group = Resource::DEFAULT_GROUP,
    8686            bool bSearchGroupsIfNotFound = false);
    8787
    88                 /**
     88        /**
    8989        @brief
    9090            Open all resources matching a given pattern (which can contain
     
    101101            Shared pointer to a data stream list , will be
    102102            destroyed automatically when no longer referenced
    103                 */
     103        */
    104104        static DataStreamListPtr openMulti(const std::string& pattern, const std::string& group = Resource::DEFAULT_GROUP);
    105105
  • code/branches/core5/src/modules/gamestates/GSMainMenu.h

    r5817 r5819  
    5151        void startClient();
    5252        void startDedicated();
    53         void startMainMenu();
     53        void startMainMenu();
    5454
    5555    private:
Note: See TracChangeset for help on using the changeset viewer.