Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5387 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_widget.cc


Ignore:
Timestamp:
Oct 16, 2005, 12:42:16 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: PNode and Element2D can now return their children-lists as const tList<type>*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl_gui/glgui_widget.cc

    r5384 r5387  
    2626{
    2727  this->init();
    28   this->setVisibility(true);
     28  this->setVisibility(GLGUI_WIDGET_DEFAULT_VISIBLE);
    2929}
    3030
     
    4646  this->setClassID(CL_GLGUI_WIDGET, "GLGuiWidget");
    4747
    48   this->managed = false;
    4948  this->focusable = true;
    5049  this->clickable = true;
    5150
    52   this->backGround = NULL;
    53   this->renderModel = 0;
     51  this->backMat = NULL;
     52  this->backModel = 0;
     53  this->frontMat = NULL;
     54  this->frontModel = 0;
    5455}
Note: See TracChangeset for help on using the changeset viewer.