diff options
Diffstat (limited to 'src/extantz')
-rw-r--r-- | src/extantz/extantz.c | 10 | ||||
-rw-r--r-- | src/extantz/woMan.c | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c index 1091c87..07e6502 100644 --- a/src/extantz/extantz.c +++ b/src/extantz/extantz.c | |||
@@ -461,11 +461,11 @@ static winFang *_makeMainMenu(globals *ourGlobals) | |||
461 | makeMainMenuFinish(me, tb); | 461 | makeMainMenuFinish(me, tb); |
462 | 462 | ||
463 | // Other stuff in the toolbar. | 463 | // Other stuff in the toolbar. |
464 | it = elm_toolbar_item_append(tb, NULL, "restriction icons", NULL, NULL); | 464 | it = elm_toolbar_item_append(tb, NoIcon, "restriction icons", NULL, NULL); |
465 | it = elm_toolbar_item_append(tb, NULL, NULL, NULL, NULL); elm_toolbar_item_separator_set(it, EINA_TRUE); | 465 | it = elm_toolbar_item_append(tb, NoIcon, NULL, NULL, NULL); elm_toolbar_item_separator_set(it, EINA_TRUE); |
466 | it = elm_toolbar_item_append(tb, NULL, "hop://localhost/Anarchadia 152, 155, 51 - Lost plot (Adult)", NULL, NULL); | 466 | it = elm_toolbar_item_append(tb, NoIcon, "hop://localhost/Anarchadia 152, 155, 51 - Lost plot (Adult)", NULL, NULL); |
467 | it = elm_toolbar_item_append(tb, NULL, NULL, NULL, NULL); elm_toolbar_item_separator_set(it, EINA_TRUE); | 467 | it = elm_toolbar_item_append(tb, NoIcon, NULL, NULL, NULL); elm_toolbar_item_separator_set(it, EINA_TRUE); |
468 | it = elm_toolbar_item_append(tb, NULL, "date time:o'clock", NULL, NULL); | 468 | it = elm_toolbar_item_append(tb, NoIcon, "date time:o'clock", NULL, NULL); |
469 | 469 | ||
470 | elm_layout_box_prepend(me->layout, WF_BOX, tb); | 470 | elm_layout_box_prepend(me->layout, WF_BOX, tb); |
471 | 471 | ||
diff --git a/src/extantz/woMan.c b/src/extantz/woMan.c index 42390cc..c867241 100644 --- a/src/extantz/woMan.c +++ b/src/extantz/woMan.c | |||
@@ -250,10 +250,10 @@ winFang *woMan_add(globals *ourGlobals) | |||
250 | evas_object_show(nf); | 250 | evas_object_show(nf); |
251 | 251 | ||
252 | sprintf(buf, "%s/%s", prefix_data_get(), img3); | 252 | sprintf(buf, "%s/%s", prefix_data_get(), img3); |
253 | tab = viewerList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NULL, "Viewers", _promote, tab_it); | 253 | tab = viewerList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NoIcon, "Viewers", _promote, tab_it); |
254 | // TODO - This strdup leaks, but this is just temporary test code anyway, it will go away. | 254 | // TODO - This strdup leaks, but this is just temporary test code anyway, it will go away. |
255 | tab = _content_image_new(me->win, strdup(buf)); tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NULL, "Landmarks", _promote, tab_it); | 255 | tab = _content_image_new(me->win, strdup(buf)); tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NoIcon, "Landmarks", _promote, tab_it); |
256 | tab = gridList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NULL, "Grids", _promote, tab_it); | 256 | tab = gridList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_enabled_set(tab_it, EINA_FALSE, EINA_TRUE); elm_toolbar_item_append(tb, NoIcon, "Grids", _promote, tab_it); |
257 | elm_layout_box_append(me->win, WF_BOX, nf); | 257 | elm_layout_box_append(me->win, WF_BOX, nf); |
258 | 258 | ||
259 | bt = eo_add(ELM_BUTTON_CLASS, me->win, | 259 | bt = eo_add(ELM_BUTTON_CLASS, me->win, |