zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d347c0632a21ee0f5084394ae5ea61002b52c90a

commit d347c0632a21ee0f5084394ae5ea61002b52c90a
Author: Marcel Hollerbach <m...@marcel-hollerbach.de>
Date:   Tue Aug 6 10:57:56 2019 -0400

    efl_input_clickable: int -> uint
    
    Summary:
    the ids of the structs here are never negative
    
    ref T7976
    
    Reviewers: zmike, segfaultxavi, cedric
    
    Reviewed By: zmike
    
    Subscribers: #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T7976
    
    Differential Revision: https://phab.enlightenment.org/D9497
---
 src/lib/evas/canvas/efl_input_clickable.eo | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/canvas/efl_input_clickable.eo 
b/src/lib/evas/canvas/efl_input_clickable.eo
index 7a7f05bfb3..bd0be0cfdd 100644
--- a/src/lib/evas/canvas/efl_input_clickable.eo
+++ b/src/lib/evas/canvas/efl_input_clickable.eo
@@ -1,7 +1,7 @@
 struct @beta Efl.Input.Clickable_Clicked {
    [[A struct that expresses a click in elementary.]]
-   repeated : int; [[The amount of how often the clicked event was repeated in 
a certain amount of time]]
-   button : int; [[The Button that is pressed]]
+   repeated : uint; [[The amount of how often the clicked event was repeated 
in a certain amount of time]]
+   button : uint; [[The Button that is pressed]]
 }
 
 mixin @beta Efl.Input.Clickable

-- 


Reply via email to