aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-20 10:25:05 +1000
committerDavid Walter Seikel2014-04-20 10:25:05 +1000
commit81c89d9cf5c80f9406c5231016dc1b5a4d3fe03e (patch)
tree1a1a52e886cc39730cbfc41c2017f9d9f7db9a98 /ClientHamr
parentTypo-- (diff)
downloadSledjHamr-81c89d9cf5c80f9406c5231016dc1b5a4d3fe03e.zip
SledjHamr-81c89d9cf5c80f9406c5231016dc1b5a4d3fe03e.tar.gz
SledjHamr-81c89d9cf5c80f9406c5231016dc1b5a4d3fe03e.tar.bz2
SledjHamr-81c89d9cf5c80f9406c5231016dc1b5a4d3fe03e.tar.xz
elm_naviframe_item_title_visible_set() was deprecated, replace it.
Diffstat (limited to 'ClientHamr')
-rw-r--r--ClientHamr/extantz/extantz.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ClientHamr/extantz/extantz.c b/ClientHamr/extantz/extantz.c
index cce135b..7cdf799 100644
--- a/ClientHamr/extantz/extantz.c
+++ b/ClientHamr/extantz/extantz.c
@@ -1351,9 +1351,10 @@ static void woMan_add(GLData *gld)
1351 evas_object_size_hint_weight_set(nf, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); 1351 evas_object_size_hint_weight_set(nf, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1352 evas_object_size_hint_align_set(nf, EVAS_HINT_FILL, EVAS_HINT_FILL); 1352 evas_object_size_hint_align_set(nf, EVAS_HINT_FILL, EVAS_HINT_FILL);
1353 evas_object_show(nf); 1353 evas_object_show(nf);
1354 tab = viewerList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_visible_set(tab_it, EINA_FALSE); elm_toolbar_item_append(tb, NULL, "Viewers", _promote, tab_it); 1354
1355 tab = _content_image_new(win, img3); tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_visible_set(tab_it, EINA_FALSE); elm_toolbar_item_append(tb, NULL, "Landmarks", _promote, tab_it); 1355 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);
1356 tab = gridList; tab_it = elm_naviframe_item_push(nf, NULL, NULL, NULL, tab, NULL); elm_naviframe_item_title_visible_set(tab_it, EINA_FALSE); elm_toolbar_item_append(tb, NULL, "Grids", _promote, tab_it); 1356 tab = _content_image_new(win, img3); 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);
1357 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);
1357 elm_box_pack_end(bx, nf); 1358 elm_box_pack_end(bx, nf);
1358 1359
1359#if USE_EO 1360#if USE_EO