Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 10, 2008, 1:37:36 AM (16 years ago)
Author:
rgrieder
Message:

merged gui back to trunk.
update the media repository!

Location:
code/trunk
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/gamestates/GSGraphics.cc

    r1724 r1755  
    4040#include <OgreWindowEventUtilities.h>
    4141
    42 #include "core/Debug.h"
     42#include "util/Debug.h"
    4343#include "core/ConsoleCommand.h"
    4444#include "core/ConfigValueIncludes.h"
     
    308308    void GSGraphics::windowMoved(Ogre::RenderWindow *rw)
    309309    {
    310         for (Iterator<orxonox::WindowEventListener> it = ObjectList<orxonox::WindowEventListener>::start(); it; ++it)
     310        for (ObjectList<orxonox::WindowEventListener>::iterator it = ObjectList<orxonox::WindowEventListener>::begin(); it; ++it)
    311311            it->windowMoved();
    312312    }
     
    323323    void GSGraphics::windowResized(Ogre::RenderWindow *rw)
    324324    {
    325         for (Iterator<orxonox::WindowEventListener> it = ObjectList<orxonox::WindowEventListener>::start(); it; ++it)
     325        for (ObjectList<orxonox::WindowEventListener>::iterator it = ObjectList<orxonox::WindowEventListener>::begin(); it; ++it)
    326326            it->windowResized(this->renderWindow_->getWidth(), this->renderWindow_->getHeight());
    327327    }
     
    335335    void GSGraphics::windowFocusChanged(Ogre::RenderWindow *rw)
    336336    {
    337         for (Iterator<orxonox::WindowEventListener> it = ObjectList<orxonox::WindowEventListener>::start(); it; ++it)
     337        for (ObjectList<orxonox::WindowEventListener>::iterator it = ObjectList<orxonox::WindowEventListener>::begin(); it; ++it)
    338338            it->windowFocusChanged();
    339339    }
Note: See TracChangeset for help on using the changeset viewer.