Changeset 1979 in orxonox.OLD for orxonox/branches/gui/guicc/orxonox_gui.cc
- Timestamp:
- Jun 18, 2004, 11:30:22 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/gui/guicc/orxonox_gui.cc
r1978 r1979 4 4 #include "orxonox_gui_video.h" 5 5 #include "orxonox_gui_audio.h" 6 #include "orxonox_gui_exec.h" 6 7 7 8 … … 29 30 Box* avBox = new Box ('h'); 30 31 { 31 OrxonoxGuiVideo 32 avBox->fill (video->getFrame ());33 OrxonoxGuiAudio 34 avBox->fill (audio->getFrame ());32 OrxonoxGuiVideo* video = new OrxonoxGuiVideo (); 33 avBox->fill (video->getFrame ()); 34 OrxonoxGuiAudio* audio = new OrxonoxGuiAudio (); 35 avBox->fill (audio->getFrame ()); 35 36 36 37 } 37 38 windowBox->fill (avBox); 39 40 OrxonoxGuiExec* exec = new OrxonoxGuiExec (orxonoxGUI); 41 windowBox->fill (exec->getFrame ()); 38 42 } 39 43 orxonoxGUI->fill (windowBox); … … 376 380 377 381 gtk_option_menu_set_menu (GTK_OPTION_MENU (widget), menu); 382 this->connectSignal ("changed", this->OptionChange); 378 383 } 379 384
Note: See TracChangeset
for help on using the changeset viewer.