Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 28, 2006, 11:23:52 AM (18 years ago)
Author:
bensch
Message:

orxonox/proxy: linking problem, trying another tardis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/gui/gl/glgui_fixedposition_box.cc

    r9546 r9547  
    2626  */
    2727  GLGuiFixedpositionBox::GLGuiFixedpositionBox (OrxGui::Position position, OrxGui::Orientation orientation)
    28       GLGuiBox(orientation)
    29   {
    30   }
     28      : GLGuiBox(orientation)
     29  {}
    3130
    3231
     
    3837
    3938
     39
    4040  void GLGuiFixedpositionBox::setPosition(OrxGui::Position position)
    4141  {
    4242    this->_position = position;
    43     this->resize;
     43    this->resize();
    4444  }
    4545
     
    4949    GLGuiBox::resize();
    5050
    51     switch (this->position)
     51    switch (this->_position)
    5252    {
    5353      case OrxGui::Center:
    54         this->setAbsCoor2D(GuiHandler::getInstance()->resolution() - this->getSize2D() / 2.0);
     54        this->setAbsCoor2D(GLGuiHandler::getInstance()->resolution() - this->getSize2D() / 2.0);
    5555        break;
     56      default:
     57        printf("not done mode yet!!\n");
    5658
    5759    }
Note: See TracChangeset for help on using the changeset viewer.