Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2595 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui.cc


Ignore:
Timestamp:
Oct 19, 2004, 1:30:24 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: Generalized plugins (returning Widget* now). Enumerator for isOption added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui.cc

    r2588 r2595  
    6363
    6464  banner = new OrxonoxGuiBanner();
    65   windowBox->fill (banner->getEventBox());
     65  windowBox->fill (banner->getWidget());
    6666 
    6767  Box* optionBox = new Box ('v');
     
    7070
    7171  video = new OrxonoxGuiVideo ();
    72   avBox->fill (video->getFrame ());
     72  avBox->fill (video->getWidget ());
    7373  audio = new OrxonoxGuiAudio ();
    74   avBox->fill (audio->getFrame ());
     74  avBox->fill (audio->getWidget ());
    7575     
    7676  optionBox->fill (avBox);
    7777   
    7878  exec = new OrxonoxGuiExec (orxonoxGUI);
    79   optionBox->fill (exec->getFrame ());
     79  optionBox->fill (exec->getWidget ());
    8080
    8181  flags = new OrxonoxGuiFlags (orxonoxGUI);
    8282
    8383
    84   optionBox->fill (flags->getFrame ());
     84  optionBox->fill (flags->getWidget ());
    8585  windowBox->fill (optionBox);
    8686 
Note: See TracChangeset for help on using the changeset viewer.