fix build break due to ABI break in EFL 1.20 45/177645/1 submit/tizen/20180502.124439 submit/tizen/20180502.143030
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Wed, 2 May 2018 10:14:04 +0000 (12:14 +0200)
committerLukasz Stanislawski <l.stanislaws@samsung.com>
Wed, 2 May 2018 10:30:14 +0000 (12:30 +0200)
The homogenous field in Elm_Gen_Item_Class has been
moved to the end of the structure.

Change-Id: Ie471fa6feac10fddf36426eb75bb80bd190b98ed

clock/src/View/AlarmListView.cpp
clock/src/View/StopWatchView.cpp
clock/src/View/WorldClockDeleteItemsView.cpp
clock/src/View/WorldClockReorderView.cpp
clock/src/View/WorldClockView.cpp

index 4de2940707ae3dd0b7e742cde78a5e83e910f871..5487e9d182af7568217288ab3a4d2a843b1b4041 100644 (file)
@@ -55,7 +55,7 @@ struct AlarmListView::ItemData {
 };
 
 Elm_Genlist_Item_Class AlarmListView::alarm_itc = {
-       0, 0, EINA_FALSE, EINA_TRUE,
+       0, 0, EINA_FALSE,
        "alarm", nullptr, nullptr,
        { AlarmListView::TextGet,
          AlarmListView::ContentGet,
@@ -63,7 +63,8 @@ Elm_Genlist_Item_Class AlarmListView::alarm_itc = {
          AlarmListView::Del,
          nullptr,
          nullptr,
-       }
+       },
+       EINA_TRUE
 };
 
 void AlarmListView::ItemClicked(void *data, Evas_Object *obj, void *info)
index 6cac2a7a7b7b97530f73ed2a5a536a0a7bc9d3f9..3ef3cf86682f29a41d14837bd5828eb09115f706 100644 (file)
@@ -28,11 +28,12 @@ const char *StopWatchView::EDJE_FILE = "edje/StopWatch.edj";
 const char *StopWatchView::GROUP = "StopWatch";
 
 const Elm_Genlist_Item_Class StopWatchView::list_itc = {
-       0, 0, EINA_FALSE, EINA_TRUE,
+       0, 0, EINA_FALSE,
        "lap", nullptr, nullptr,
        { GetListText,
          nullptr, nullptr, nullptr, nullptr, nullptr,
-       }
+       },
+       EINA_TRUE
 };
 
 StopWatchView::StopWatchView(ui::IView &main)
index 9bc3370fd6bd01cc30e3a750be5ac8d426f6524b..ae3bc4deedc7b6dd9fbfad138385ae429d17f577 100644 (file)
@@ -61,7 +61,7 @@ struct LocationDeleteItemData {
 /* Delete list View */
 
 Elm_Genlist_Item_Class WorldClockDeleteItemsView::world_clock_delete_view_itc_ = {
-       0, 0, EINA_FALSE, EINA_TRUE,
+       0, 0, EINA_FALSE,
        "worldclock.delete/reorder.list", nullptr, nullptr,
        { WorldClockDeleteItemsView::TextGet,
          WorldClockDeleteItemsView::ContentGet,
@@ -69,7 +69,8 @@ Elm_Genlist_Item_Class WorldClockDeleteItemsView::world_clock_delete_view_itc_ =
          WorldClockDeleteItemsView::Del,
          nullptr,
          nullptr,
-       }
+       },
+       EINA_TRUE
 };
 
 void WorldClockDeleteItemsView::AppendItems(std::vector<const model::Location *> locations)
index 7f2ad5d911d9c191fcbf0290c52868a82df99bf4..309830fa74e72627b598223a6bff249233720624 100644 (file)
@@ -56,7 +56,7 @@ struct LocationReorderItemData {
 /* Reorder list View */
 
 Elm_Genlist_Item_Class WorldClockReorderView::world_clock_reorder_items_view_itc_ = {
-       0, 0, EINA_FALSE, EINA_TRUE,
+       0, 0, EINA_FALSE,
        "worldclock.delete/reorder.list", nullptr, nullptr,
        { WorldClockReorderView::TextGet,
          WorldClockReorderView::ContentGet,
@@ -64,7 +64,8 @@ Elm_Genlist_Item_Class WorldClockReorderView::world_clock_reorder_items_view_itc
          WorldClockReorderView::Del,
          nullptr,
          nullptr,
-       }
+       },
+       EINA_TRUE
 };
 
 
index 47768162ac36d303faac973aa8e060911432e5ca..768e3663a5eb45a2ce601c5fc3673b6b7d79ad6b 100644 (file)
@@ -43,7 +43,7 @@ using namespace utils;
 /* Custom list View */
 
 Elm_Genlist_Item_Class WorldClockView::world_clock_itc_ = {
-       0, 0, EINA_FALSE, EINA_TRUE,
+       0, 0, EINA_FALSE,
        "worldclock.custom.list", nullptr, nullptr,
        { WorldClockView::TextGet,
          nullptr,
@@ -51,7 +51,8 @@ Elm_Genlist_Item_Class WorldClockView::world_clock_itc_ = {
          WorldClockView::Del,
          nullptr,
          nullptr,
-       }
+       },
+       EINA_TRUE
 };