Remove Debug Code
authorIra W. Snyder <devel@irasnyder.com>
Tue, 9 Oct 2007 19:49:53 +0000 (12:49 -0700)
committerIra W. Snyder <devel@irasnyder.com>
Tue, 9 Oct 2007 19:49:53 +0000 (12:49 -0700)
Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
TODO
elevatorgui.cpp

diff --git a/TODO b/TODO
index 2f1a1ff..47d2a3a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,8 +3,6 @@ with their direction, as well as just an integer version of their position.
 
 Move the PositionLabels to the top of the screen.
 
-Remove debug code from GUI setup
-
 Make the input of floors and elevators GUI based (dialog boxes)
 
 Four buttons: Start, Pause, Resume, Quit
index f9d03a1..630a855 100644 (file)
@@ -30,8 +30,6 @@ ElevatorGUI::ElevatorGUI (int floors, int elevators)
        /* Fill in all of the ElevatorDoors and CallButtons */
        for (f_attach=0, f=floors-1; f>=0; --f, ++f_attach)
        {
-               std::cout << "at floor: " << f << std::endl;
-
                /* Create and attach the VBox */
                Gtk::VBox *box = new Gtk::VBox ();
                table_.attach (*box, 0, 1, f_attach, f_attach+1);
@@ -74,7 +72,6 @@ ElevatorGUI::ElevatorGUI (int floors, int elevators)
 
                for (e=0; e<elevators; ++e) // run left-to-right
                {
-                       std::cout << "Attaching ElevatorDoor (e=" << e << ", f=" << f << ")" << std::endl;
                        ElevatorDoor *door = new ElevatorDoor (e, f);
                        elevator_doors_.push_back (door);
                        table_.attach (*door, e+1, e+2, f_attach, f_attach+1);