diff options
author | Alban Crequy <alban.crequy@collabora.co.uk> | 2010-12-15 16:41:45 +0000 |
---|---|---|
committer | Alban Crequy <alban.crequy@collabora.co.uk> | 2010-12-15 16:41:45 +0000 |
commit | bd987efe53db346cdc2a61bc182b36c384bea81e (patch) | |
tree | 64c7beaa1e3a842123d7dee4ac540947ece0ee39 | |
parent | eb0f6a352bbefd3e3968018b3577d748fb34675b (diff) |
Remove comboliszt
-rw-r--r-- | liszt/main.c | 14 |
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); |