diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/evas/canvas/efl_input_hold.c | 4 | ||||
-rw-r--r-- | src/lib/evas/canvas/efl_input_hold.eo | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/evas/canvas/efl_input_hold.c b/src/lib/evas/canvas/efl_input_hold.c index 0713ca6e2a..c23f043ad1 100644 --- a/src/lib/evas/canvas/efl_input_hold.c +++ b/src/lib/evas/canvas/efl_input_hold.c | |||
@@ -13,13 +13,13 @@ | |||
13 | #define MY_CLASS EFL_INPUT_HOLD_CLASS | 13 | #define MY_CLASS EFL_INPUT_HOLD_CLASS |
14 | 14 | ||
15 | EOLIAN static void | 15 | EOLIAN static void |
16 | _efl_input_hold_hold_set(Eo *obj EINA_UNUSED, Efl_Input_Hold_Data *pd, Eina_Bool val) | 16 | _efl_input_hold_input_hold_set(Eo *obj EINA_UNUSED, Efl_Input_Hold_Data *pd, Eina_Bool val) |
17 | { | 17 | { |
18 | pd->hold = !!val; | 18 | pd->hold = !!val; |
19 | } | 19 | } |
20 | 20 | ||
21 | EOLIAN static Eina_Bool | 21 | EOLIAN static Eina_Bool |
22 | _efl_input_hold_hold_get(const Eo *obj EINA_UNUSED, Efl_Input_Hold_Data *pd) | 22 | _efl_input_hold_input_hold_get(const Eo *obj EINA_UNUSED, Efl_Input_Hold_Data *pd) |
23 | { | 23 | { |
24 | return pd->hold; | 24 | return pd->hold; |
25 | } | 25 | } |
diff --git a/src/lib/evas/canvas/efl_input_hold.eo b/src/lib/evas/canvas/efl_input_hold.eo index 9649d75cb6..9160f2d306 100644 --- a/src/lib/evas/canvas/efl_input_hold.eo +++ b/src/lib/evas/canvas/efl_input_hold.eo | |||
@@ -2,7 +2,7 @@ class Efl.Input.Hold extends Efl.Object implements Efl.Input.Event | |||
2 | { | 2 | { |
3 | [[Event data sent when inputs are put on hold or resumed.]] | 3 | [[Event data sent when inputs are put on hold or resumed.]] |
4 | methods { | 4 | methods { |
5 | @property hold { | 5 | @property input_hold { |
6 | [[Property to show if inputs are now on hold.]] | 6 | [[Property to show if inputs are now on hold.]] |
7 | values { | 7 | values { |
8 | val: bool; [[$true if inputs are on hold, $false otherwise]] | 8 | val: bool; [[$true if inputs are on hold, $false otherwise]] |