diff options
author | Rusty Lynch <rusty.lynch@intel.com> | 2012-11-30 10:45:31 -0800 |
---|---|---|
committer | Rusty Lynch <rusty.lynch@intel.com> | 2012-11-30 10:45:31 -0800 |
commit | a128267cf61ac5cd16fb34a9ac081ed45201a699 (patch) | |
tree | 3c1784ce06a953bf00b9ea8b6009e55dd46ef427 | |
parent | 89ae3e2968d998e201f5e27f1036028c4b47e746 (diff) | |
download | org.tizen.browser-a128267cf61ac5cd16fb34a9ac081ed45201a699.tar.gz org.tizen.browser-a128267cf61ac5cd16fb34a9ac081ed45201a699.tar.bz2 org.tizen.browser-a128267cf61ac5cd16fb34a9ac081ed45201a699.zip |
Fixing build breakage caused by updated EFL
The new EFL libs are stricter about invalid edc code and also the
elm_widget_add functionality has changed.
-rwxr-xr-x | edc/browser-view-control-bar.edc | 3 | ||||
-rwxr-xr-x | src/scissorbox/scissorbox.cpp | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/edc/browser-view-control-bar.edc b/edc/browser-view-control-bar.edc index e539f04..f77aba1 100755 --- a/edc/browser-view-control-bar.edc +++ b/edc/browser-view-control-bar.edc @@ -725,9 +725,6 @@ group { name: "elm/toolbar/item/browser/default"; group { name: "elm/toolbar/item/browser/item_horizontal"; inherit: "elm/toolbar/item/browser/default"; - script { - public item_state = ITEM_STATE_ENABLED; - } parts { part { name: "icon_rect"; description { state: "default" 0.0; diff --git a/src/scissorbox/scissorbox.cpp b/src/scissorbox/scissorbox.cpp index a41c621..83cf20e 100755 --- a/src/scissorbox/scissorbox.cpp +++ b/src/scissorbox/scissorbox.cpp @@ -575,7 +575,7 @@ Evas_Object *br_scissorbox_add(Evas_Object *parent) wd = (Widget_Data *)ELM_NEW(Widget_Data); - obj = elm_widget_add(e); + obj = elm_widget_add(NULL, e); elm_widget_type_set(obj, "scissorbox"); elm_widget_sub_object_add(parent, obj); elm_widget_data_set(obj, wd); |