Suppress build warning message 28/159028/6
authorShinwoo Kim <cinoo.kim@samsung.com>
Mon, 6 Nov 2017 12:20:06 +0000 (21:20 +0900)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Fri, 10 Nov 2017 04:56:28 +0000 (04:56 +0000)
Change-Id: I320984158df1ad037005472c40451546d4e9ea3a

src/lib/elm_interface_atspi_accessible.h
src/lib/elm_widget.c

index 8a6b3bf..d4a6bb3 100644 (file)
@@ -573,7 +573,7 @@ EAPI Elm_Atspi_Relation_Set elm_atspi_relation_set_clone(const Elm_Atspi_Relatio
  * Emits ATSPI 'ChildrenChanged' dbus signal with added child as argument.
  */
 //TIZEN_ONLY(20170923) Block event which is not interested in
-#define elm_interface_atspi_accessible_children_changed_added_signal_emit(obj, child) /* Empty */
+#define elm_interface_atspi_accessible_children_changed_added_signal_emit(obj, child) { /* Empty */ }
 /*
 #define elm_interface_atspi_accessible_children_changed_added_signal_emit(obj, child) \
    do { \
@@ -587,7 +587,7 @@ EAPI Elm_Atspi_Relation_Set elm_atspi_relation_set_clone(const Elm_Atspi_Relatio
  * Emits ATSPI 'ChildrenChanged' dbus signal with deleted child as argument.
  */
 //TIZEN_ONLY(20170923) Block event which is not interested in
-#define elm_interface_atspi_accessible_children_changed_del_signal_emit(obj, child) /* Empty */
+#define elm_interface_atspi_accessible_children_changed_del_signal_emit(obj, child) { /* Empty */ }
 /*
 #define elm_interface_atspi_accessible_children_changed_del_signal_emit(obj, child) \
    do { \
@@ -613,7 +613,7 @@ EAPI Elm_Atspi_Relation_Set elm_atspi_relation_set_clone(const Elm_Atspi_Relatio
  * Emits ATSPI 'AddAccessible' dbus signal.
  */
 //TIZEN_ONLY(20170923) Block event which is not interested in
-#define elm_interface_atspi_accessible_added(obj) /* Empty */
+#define elm_interface_atspi_accessible_added(obj) { /* Empty */ }
 /*
 #define elm_interface_atspi_accessible_added(obj) \
    eo_do(ELM_INTERFACE_ATSPI_ACCESSIBLE_MIXIN, elm_interface_atspi_accessible_event_emit(obj, ELM_INTERFACE_ATSPI_ACCESSIBLE_EVENT_ADDED, NULL));
@@ -624,7 +624,7 @@ EAPI Elm_Atspi_Relation_Set elm_atspi_relation_set_clone(const Elm_Atspi_Relatio
  * Emits ATSPI 'RemoveAccessible' dbus signal.
  */
 //TIZEN_ONLY(20170923) Block event which is not interested in
-#define elm_interface_atspi_accessible_removed(obj) /* Empty */
+#define elm_interface_atspi_accessible_removed(obj) { /* Empty */ }
 /*
 #define elm_interface_atspi_accessible_removed(obj) \
    eo_do(ELM_INTERFACE_ATSPI_ACCESSIBLE_MIXIN, elm_interface_atspi_accessible_event_emit(obj, ELM_INTERFACE_ATSPI_ACCESSIBLE_EVENT_REMOVED, NULL));
index 803e13c..ab47a74 100644 (file)
@@ -5077,7 +5077,6 @@ EAPI Eina_Bool
 _elm_widget_item_highlightable(Elm_Object_Item *item)
 {
    Eo *parent;
-   Eina_Bool can_highlight;
 
    Elm_Widget_Item_Data *id = eo_data_scope_get(item, ELM_WIDGET_ITEM_CLASS);
    if (!id) return EINA_FALSE;
@@ -6996,7 +6995,6 @@ EAPI Eina_Bool
 _elm_widget_highlightable(Evas_Object *obj)
 {
    Eo *parent;
-   Eina_Bool can_highlight;
 
    Elm_Widget_Smart_Data *wd = eo_data_scope_get(obj, ELM_WIDGET_CLASS);
    if (!wd) return EINA_FALSE;