]> git.mxchange.org Git - flightgear.git/commitdiff
Changed return type of fireItem to void.
authordavid <david>
Sun, 19 Jan 2003 15:27:29 +0000 (15:27 +0000)
committerdavid <david>
Sun, 19 Jan 2003 15:27:29 +0000 (15:27 +0000)
src/GUI/menubar.cxx
src/GUI/menubar.hxx

index ca23a721e04d4c177bd208f9d14907b857d652dd..f9fbbe0bba83c626aa063553ca9aa0b3556b813d 100644 (file)
@@ -324,7 +324,7 @@ FGMenuBar::isVisible () const
     return _visible;
 }
 
-bool
+void
 FGMenuBar::fireItem (puObject * item)
 {
     const char * name = item->getLegend();
index 9c3929e69a17c099effce64c9b1206eecf9818d4..4dabf20c7bc528364cb78b5ec25e9dc6b4aaac9d 100644 (file)
@@ -72,7 +72,7 @@ public:
      * have to know about PUI internals, but this method allows the
      * callback to pass the menu item one-shot on to the current menu.
      */
-    virtual bool fireItem (puObject * item);
+    virtual void fireItem (puObject * item);
 
 
 private: