Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8670 in orxonox.OLD


Ignore:
Timestamp:
Jun 21, 2006, 2:15:21 PM (18 years ago)
Author:
bensch
Message:

less debug

Location:
branches/gui/src/lib/gui/gl
Files:
3 edited

Legend:

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

    r8619 r8670  
    125125      height += borderBottom(); /* *2 done further up */
    126126
    127       printf("%f %f\n", width, height);
    128127      this->setSize2D(width, height);
    129128    }
     
    145144      height += borderBottom(); /* *2 done further up */
    146145
    147       printf("%f %f\n", width, height);
    148146      this->setSize2D(width, height);
    149147    }
  • branches/gui/src/lib/gui/gl/glgui_pushbutton.cc

    r8669 r8670  
    6363  void GLGuiPushButton::receivedFocus()
    6464  {
    65     printf("%s received focus\n", this->label().c_str());
    6665    GLGuiWidget::receivedFocus();
    6766  }
     
    6968  void GLGuiPushButton::removedFocus()
    7069  {
    71     printf("%s removed focus\n", this->label().c_str());
    7270    GLGuiWidget::removedFocus();
    7371
     
    7674  void GLGuiPushButton::clicking(const Vector2D& pos)
    7775  {
    78     printf("%s clicked\n", this->label().c_str());
    7976    GLGuiButton::clicking(pos);
    8077  }
     
    8380  void GLGuiPushButton::releasing(const Vector2D& pos, bool focused)
    8481  {
    85     printf("%s released\n", this->label().c_str());
    8682    if (focused)
    8783      GLGuiButton::releasing(pos, focused);
  • branches/gui/src/lib/gui/gl/glgui_widget.cc

    r8669 r8670  
    174174  void GLGuiWidget::breakMouseFocus()
    175175  {
    176     printf("TESTING UNFOCUSING\n");
    177176    if (GLGuiWidget::_mouseFocused == this)
    178177    {
Note: See TracChangeset for help on using the changeset viewer.