aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-06-11 20:09:33 +1000
committerDavid Walter Seikel2014-06-11 20:09:33 +1000
commitd525e7e7a38bf4824e44a2bdc3e14175933a8588 (patch)
treec3b5f960b8295d5a239ddf8fb5852285372cbda8 /src/extantz/extantz.c
parentSome notes on privacy. (diff)
downloadSledjHamr-d525e7e7a38bf4824e44a2bdc3e14175933a8588.zip
SledjHamr-d525e7e7a38bf4824e44a2bdc3e14175933a8588.tar.gz
SledjHamr-d525e7e7a38bf4824e44a2bdc3e14175933a8588.tar.bz2
SledjHamr-d525e7e7a38bf4824e44a2bdc3e14175933a8588.tar.xz
Update to post release API change. So much for stable API to collaborate with. sigh
Diffstat (limited to '')
-rw-r--r--src/extantz/extantz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c
index 7c90b8a..98669ea 100644
--- a/src/extantz/extantz.c
+++ b/src/extantz/extantz.c
@@ -482,7 +482,7 @@ static void makeMainMenu(globals *ourGlobals)
482 Elm_Object_Item *tb_it; 482 Elm_Object_Item *tb_it;
483 483
484 // A toolbar thingy. 484 // A toolbar thingy.
485 tb = eo_add(ELM_OBJ_TOOLBAR_CLASS, ourGlobals->win, 485 tb = eo_add(ELM_TOOLBAR_CLASS, ourGlobals->win,
486 evas_obj_size_hint_weight_set(EVAS_HINT_EXPAND, 0.0), 486 evas_obj_size_hint_weight_set(EVAS_HINT_EXPAND, 0.0),
487 evas_obj_size_hint_align_set(EVAS_HINT_FILL, EVAS_HINT_FILL), 487 evas_obj_size_hint_align_set(EVAS_HINT_FILL, EVAS_HINT_FILL),
488 elm_obj_toolbar_shrink_mode_set(ELM_TOOLBAR_SHRINK_MENU), 488 elm_obj_toolbar_shrink_mode_set(ELM_TOOLBAR_SHRINK_MENU),
@@ -670,7 +670,7 @@ EAPI_MAIN int elm_main(int argc, char **argv)
670 // Override the background image 670 // Override the background image
671#if 1 671#if 1
672 snprintf(buf, sizeof(buf), "%s/sky_03.jpg", prefix_data_get()); 672 snprintf(buf, sizeof(buf), "%s/sky_03.jpg", prefix_data_get());
673 ourGlobals.mainWindow->bg = eo_add(ELM_OBJ_IMAGE_CLASS, ourGlobals.mainWindow->win, 673 ourGlobals.mainWindow->bg = eo_add(ELM_IMAGE_CLASS, ourGlobals.mainWindow->win,
674 evas_obj_size_hint_weight_set(EVAS_HINT_EXPAND, EVAS_HINT_EXPAND), 674 evas_obj_size_hint_weight_set(EVAS_HINT_EXPAND, EVAS_HINT_EXPAND),
675 elm_obj_image_fill_outside_set(EINA_TRUE), 675 elm_obj_image_fill_outside_set(EINA_TRUE),
676 elm_obj_image_file_set(buf, NULL), 676 elm_obj_image_file_set(buf, NULL),