Changeset 3149 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 11, 2004, 3:55:54 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/gui/orxonox_gui_banner.cc
r3148 r3149 63 63 } 64 64 65 /**66 \brief Opens up our LOGO-Window.\n67 it creates a new one if it has not yet been opened.\n68 it shows it if it has been created69 */70 void OrxonoxGuiBanner::logoWindowOpen()71 {72 logoWindow->open();73 }74 75 /**76 \brief Hides Window through ~Window();77 */78 void OrxonoxGuiBanner::logoWindowClose()79 {80 logoWindow->close();81 }82 83 65 /** 84 66 \brief Returns an EventBox … … 99 81 gint OrxonoxGuiBanner::LogoWindowOpen (GtkWidget* widget, GdkEvent* event, void* banner) 100 82 { 101 static_cast<OrxonoxGuiBanner*>(banner)->logoWindow Open();83 static_cast<OrxonoxGuiBanner*>(banner)->logoWindow->open(); 102 84 } 103 85 … … 111 93 gint OrxonoxGuiBanner::LogoWindowClose (GtkWidget *widget, GdkEvent* event, void* banner) 112 94 { 113 static_cast<OrxonoxGuiBanner*>(banner)->logoWindow Close();95 static_cast<OrxonoxGuiBanner*>(banner)->logoWindow->close(); 114 96 115 97 }
Note: See TracChangeset
for help on using the changeset viewer.