1
0
Fork 0

Changed return type of fireItem to void.

This commit is contained in:
david 2003-01-19 15:27:29 +00:00
parent 9e143bc615
commit cf5d7499ad
2 changed files with 2 additions and 2 deletions

View file

@ -324,7 +324,7 @@ FGMenuBar::isVisible () const
return _visible;
}
bool
void
FGMenuBar::fireItem (puObject * item)
{
const char * name = item->getLegend();

View 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: