summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--liszt/main.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/liszt/main.c b/liszt/main.c
index 42cdd88fa..2ca75c7ef 100644
--- a/liszt/main.c
+++ b/liszt/main.c
@@ -109,7 +109,7 @@ main (int argc, char **argv)
MxApplication *application;
FolksIndividualAggregator *aggregator;
MxWindow *window;
- ClutterActor *stage, *toolbar, *layout, *combo, *scroll, *view;
+ ClutterActor *stage, *toolbar, *scroll, *view;
application = mx_application_new (&argc, &argv, "Contact list",
MX_APPLICATION_SINGLE_INSTANCE);
@@ -123,18 +123,6 @@ main (int argc, char **argv)
toolbar = (ClutterActor *) mx_window_get_toolbar (window);
mx_bin_set_fill (MX_BIN (toolbar), TRUE, FALSE);
- layout = mx_box_layout_new ();
-
- combo = mx_combo_box_new ();
- clutter_container_add_actor (CLUTTER_CONTAINER (layout), combo);
- mx_combo_box_append_text (MX_COMBO_BOX (combo), "All Contacts");
- mx_combo_box_append_text (MX_COMBO_BOX (combo), "Work");
- mx_combo_box_append_text (MX_COMBO_BOX (combo), "Play");
- mx_combo_box_append_text (MX_COMBO_BOX (combo), "Girls");
- mx_combo_box_set_index (MX_COMBO_BOX (combo), 0);
-
- clutter_container_add_actor (CLUTTER_CONTAINER (toolbar), layout);
-
/* main stage */
scroll = mx_scroll_view_new ();
mx_window_set_child (window, scroll);