Suppress build warning message 95/159595/2
authorShinwoo Kim <cinoo.kim@samsung.com>
Mon, 6 Nov 2017 12:20:06 +0000 (21:20 +0900)
committerShinwoo Kim <cinoo.kim@samsung.com>
Thu, 16 Nov 2017 06:04:47 +0000 (15:04 +0900)
Change-Id: I320984158df1ad037005472c40451546d4e9ea3a

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

index 8a6b3bf60616ad48a96a038af8d4d487231ed871..d4a6bb3fe456b19c782ad666aa634cd66f4e2ac1 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 46eed7c238e3327684574a2e7d00ccd5cfa43ea4..bdfd08fc0625ed9c32d2b909a0f983abd104a262 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;
@@ -6992,7 +6991,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;