diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-07 08:51:26 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-07 08:51:26 -0800 |
commit | 989cf37fcf0453b72f3d542f202cf532bf1532db (patch) | |
tree | 727a8e1e0d9287b5f1024d66da3c967b5254e5d9 /gtk-gui.c | |
parent | 1b0ddfbbe218e25001512a18e5cc9224aabf8698 (diff) | |
download | subsurface-989cf37fcf0453b72f3d542f202cf532bf1532db.tar.gz |
Remove the now obsolete hard coded test_plan
This was just a crutch to get something out there for people to play with.
With the ability to input a plan in place this is now obsolete.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r-- | gtk-gui.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -1125,11 +1125,6 @@ static void next_dc(GtkWidget *w, gpointer data) repaint_dive(); } -static void test_planner_cb(GtkWidget *w, gpointer data) -{ - test_planner(); -} - /* * Get a value in tenths (so "10.2" == 102, "9" = 90) * @@ -1611,7 +1606,6 @@ static GtkActionEntry menu_items[] = { { "ViewThree", NULL, N_("Three"), CTRLCHAR "4", NULL, G_CALLBACK(view_three) }, { "PrevDC", NULL, N_("Prev DC"), NULL, NULL, G_CALLBACK(prev_dc) }, { "NextDC", NULL, N_("Next DC"), NULL, NULL, G_CALLBACK(next_dc) }, - { "TestPlan", NULL, N_("Test Planner"), NULL, NULL, G_CALLBACK(test_planner_cb) }, { "InputPlan", NULL, N_("Input Plan"), NULL, NULL, G_CALLBACK(input_plan) }, }; static gint nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]); @@ -1662,7 +1656,6 @@ static const gchar* ui_string = " \ <menuitem name=\"SelectEvents\" action=\"SelectEvents\" /> \ </menu> \ <menu name=\"PlannerMenu\" action=\"PlannerMenuAction\"> \ - <menuitem name=\"TestPlan\" action=\"TestPlan\" /> \ <menuitem name=\"InputPlan\" action=\"InputPlan\" /> \ </menu> \ <menu name=\"Help\" action=\"HelpMenuAction\"> \ |