]> git.mxchange.org Git - flightgear.git/commitdiff
Removed debugging statements accidentally left in.
authordavid <david>
Mon, 23 Dec 2002 17:58:31 +0000 (17:58 +0000)
committerdavid <david>
Mon, 23 Dec 2002 17:58:31 +0000 (17:58 +0000)
src/GUI/new_gui.cxx

index 57fad0403a564a40dc1736942a266551a5d88ced..90cff403d7c2ea9a346ea9d5448a1a6f6a6bc3f2 100644 (file)
@@ -28,12 +28,8 @@ action_callback (puObject * object)
         (NewGUI *)globals->get_subsystem_mgr()
           ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
     gui->setCurrentWidget(info->widget);
-    for (int i = 0; i < info->bindings.size(); i++) {
-        std::cerr << "Firing binding " << i << ": " << info->bindings[i]->getCommandName() << std::endl;
+    for (int i = 0; i < info->bindings.size(); i++)
         info->bindings[i]->fire();
-        std::cerr << "done\n";
-    }
-    std::cerr << "All bindings fired\n";
     gui->setCurrentWidget(0);
 }
 
@@ -70,7 +66,6 @@ GUIWidget::GUIWidget (SGPropertyNode_ptr props)
 
 GUIWidget::~GUIWidget ()
 {
-    std::cerr << "Destroying widget\n";
     delete _object;
 
     int i;