summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRusty Lynch <rusty.lynch@intel.com>2012-11-30 10:45:31 -0800
committerRusty Lynch <rusty.lynch@intel.com>2012-11-30 10:45:31 -0800
commita128267cf61ac5cd16fb34a9ac081ed45201a699 (patch)
tree3c1784ce06a953bf00b9ea8b6009e55dd46ef427
parent89ae3e2968d998e201f5e27f1036028c4b47e746 (diff)
downloadorg.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-xedc/browser-view-control-bar.edc3
-rwxr-xr-xsrc/scissorbox/scissorbox.cpp2
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);