diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2019-08-29 13:46:35 +0200 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2019-08-29 13:58:16 +0200 |
commit | 9c018613ee9a479ae49b4927ac9ff166b2fd864e (patch) | |
tree | b5995006b2a56897838e28fc4d9144be10bd4e7f /src/lib/efl/interfaces/efl_text_cursor.eo | |
parent | f7cfd0f8339bcfa13a89a7ce0a1c005c77bf05c7 (diff) |
eolian: drop @cref
In the end this was just a failed experiment that didn't turn
out to be practical. For now, revert back to ptr(const(T)) until
a proper replacement for pointer syntax is added.
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_cursor.eo | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/efl/interfaces/efl_text_cursor.eo b/src/lib/efl/interfaces/efl_text_cursor.eo index 50fc3aecdc..cef645a173 100644 --- a/src/lib/efl/interfaces/efl_text_cursor.eo +++ b/src/lib/efl/interfaces/efl_text_cursor.eo | |||
@@ -54,7 +54,7 @@ interface @beta Efl.Text_Cursor { | |||
54 | content: Eina.Unicode; [[The unicode codepoint of the character]] | 54 | content: Eina.Unicode; [[The unicode codepoint of the character]] |
55 | } | 55 | } |
56 | keys { | 56 | keys { |
57 | @cref cur: Efl.Text_Cursor_Cursor; [[Cursor object]] | 57 | cur: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor object]] |
58 | } | 58 | } |
59 | } | 59 | } |
60 | @property cursor_geometry { | 60 | @property cursor_geometry { |
@@ -70,7 +70,7 @@ interface @beta Efl.Text_Cursor { | |||
70 | return: bool; [[ $true if split cursor, $false otherwise.]] | 70 | return: bool; [[ $true if split cursor, $false otherwise.]] |
71 | } | 71 | } |
72 | keys { | 72 | keys { |
73 | @cref cur: Efl.Text_Cursor_Cursor; [[Cursor object]] | 73 | cur: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor object]] |
74 | ctype: Efl.Text_Cursor_Type; [[The type of the cursor.]] | 74 | ctype: Efl.Text_Cursor_Type; [[The type of the cursor.]] |
75 | } | 75 | } |
76 | values { | 76 | values { |
@@ -97,16 +97,16 @@ interface @beta Efl.Text_Cursor { | |||
97 | cursor_equal { | 97 | cursor_equal { |
98 | [[Check if two cursors are equal]] | 98 | [[Check if two cursors are equal]] |
99 | params { | 99 | params { |
100 | @cref cur1: Efl.Text_Cursor_Cursor; [[Cursor 1 object]] | 100 | @in cur1: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor 1 object]] |
101 | @cref cur2: Efl.Text_Cursor_Cursor; [[Cursor 2 object]] | 101 | @in cur2: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor 2 object]] |
102 | } | 102 | } |
103 | return: bool; [[$true if cursors are equal, $false otherwise]] | 103 | return: bool; [[$true if cursors are equal, $false otherwise]] |
104 | } | 104 | } |
105 | cursor_compare { | 105 | cursor_compare { |
106 | [[Compare two cursors]] | 106 | [[Compare two cursors]] |
107 | params { | 107 | params { |
108 | @cref cur1: Efl.Text_Cursor_Cursor; [[Cursor 1 object]] | 108 | @in cur1: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor 1 object]] |
109 | @cref cur2: Efl.Text_Cursor_Cursor; [[Cursor 2 object]] | 109 | @in cur2: ptr(const(Efl.Text_Cursor_Cursor)); [[Cursor 2 object]] |
110 | } | 110 | } |
111 | return: int; [[Difference between cursors]] | 111 | return: int; [[Difference between cursors]] |
112 | } | 112 | } |
@@ -114,7 +114,7 @@ interface @beta Efl.Text_Cursor { | |||
114 | [[Copy existing cursor]] | 114 | [[Copy existing cursor]] |
115 | params { | 115 | params { |
116 | /* @out */ dst: ptr(Efl.Text_Cursor_Cursor); [[Destination cursor]] | 116 | /* @out */ dst: ptr(Efl.Text_Cursor_Cursor); [[Destination cursor]] |
117 | @cref src: Efl.Text_Cursor_Cursor; [[Source cursor]] | 117 | @in src: ptr(const(Efl.Text_Cursor_Cursor)); [[Source cursor]] |
118 | } | 118 | } |
119 | } | 119 | } |
120 | cursor_char_next { | 120 | cursor_char_next { |