Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 27, 2011, 7:01:07 PM (13 years ago)
Author:
rgrieder
Message:

Fixed msvc warnings and a typo.

File:
1 edited

Legend:

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

    r7939 r7994  
    510510    void GUIManager::windowResized(unsigned int newWidth, unsigned int newHeight)
    511511    {
    512         this->guiRenderer_->setDisplaySize(CEGUI::Size(newWidth, newHeight));
    513     }
    514 
    515     /**
    516         @brief Notify CEGUI if the windows loses the focus (stops higlight of menu items, etc).
     512        this->guiRenderer_->setDisplaySize(CEGUI::Size((float)newWidth, (float)newHeight));
     513    }
     514
     515    /**
     516        @brief Notify CEGUI if the windows loses the focus (stops highlighting of menu items, etc).
    517517    */
    518518    void GUIManager::windowFocusChanged(bool bFocus)
Note: See TracChangeset for help on using the changeset viewer.