diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/elementary/efl_ui_multibuttonentry.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/elementary/efl_ui_multibuttonentry.c b/src/lib/elementary/efl_ui_multibuttonentry.c index a1a7bdeb57..c5304f1246 100644 --- a/src/lib/elementary/efl_ui_multibuttonentry.c +++ b/src/lib/elementary/efl_ui_multibuttonentry.c | |||
@@ -36,10 +36,6 @@ static const char SIG_EXPANDED[] = "expanded"; | |||
36 | static const char SIG_CONTRACTED[] = "contracted"; | 36 | static const char SIG_CONTRACTED[] = "contracted"; |
37 | static const char SIG_EXPAND_STATE_CHANGED[] = "expand,state,changed"; | 37 | static const char SIG_EXPAND_STATE_CHANGED[] = "expand,state,changed"; |
38 | 38 | ||
39 | static const char PART_NAME_BUTTON[] = "btn"; | ||
40 | static const char PART_NAME_GUIDE_TEXT[] = "guidetext"; | ||
41 | static const char PART_NAME_LABEL[] = "label"; | ||
42 | static const char PART_NAME_CLOSED_BUTTON[] = "closedbutton"; | ||
43 | static const Evas_Smart_Cb_Description _smart_callbacks[] = { | 39 | static const Evas_Smart_Cb_Description _smart_callbacks[] = { |
44 | {SIG_ITEM_SELECTED, ""}, | 40 | {SIG_ITEM_SELECTED, ""}, |
45 | {SIG_ITEM_ADDED, ""}, | 41 | {SIG_ITEM_ADDED, ""}, |
@@ -55,6 +51,11 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { | |||
55 | {NULL, NULL} | 51 | {NULL, NULL} |
56 | }; | 52 | }; |
57 | 53 | ||
54 | static const char PART_NAME_BUTTON[] = "btn"; | ||
55 | static const char PART_NAME_GUIDE_TEXT[] = "guidetext"; | ||
56 | static const char PART_NAME_LABEL[] = "label"; | ||
57 | static const char PART_NAME_CLOSED_BUTTON[] = "closedbutton"; | ||
58 | |||
58 | static Eina_Bool _efl_ui_multibuttonentry_smart_focus_next_enable = EINA_FALSE; | 59 | static Eina_Bool _efl_ui_multibuttonentry_smart_focus_next_enable = EINA_FALSE; |
59 | static Eina_Bool _efl_ui_multibuttonentry_smart_focus_direction_enable = EINA_TRUE; | 60 | static Eina_Bool _efl_ui_multibuttonentry_smart_focus_direction_enable = EINA_TRUE; |
60 | 61 | ||