text: Fix struct definition

Summary:
Efl_Text_Cursor_Handle was being declared twice, confusing the C#
generator. This commits updates it to be singly defined in the
text_types eot file.

Reviewers: segfaultxavi, ali.alzyod

Reviewed By: segfaultxavi

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10726
This commit is contained in:
Lauro Moura 2019-11-22 15:43:22 +01:00 committed by Xavi Artigas
parent d2ed28bd8a
commit b22594a10b
2 changed files with 2 additions and 5 deletions

View File

@ -24,5 +24,4 @@ struct @beta Efl.Ui.Text_Change_Info {
type @extern @beta Efl.Text_Annotate_Annotation: __undefined_type; [[EFL text annotations data structure]]
type @extern @beta Efl.Text_Cursor_Handle: __undefined_type; [[Text cursor data structure]]
struct @beta Efl.Text_Cursor_Handle; [[Opaque handle for Text cursors.]]

View File

@ -1,5 +1,3 @@
struct @beta Efl_Text_Cursor_Handle; [[Opaque handle for Text cursors.]]
enum @beta Efl.Text.Cursor_Type
{
[[Text cursor types.]]
@ -226,7 +224,7 @@ class @beta Efl.Text.Cursor extends Efl.Object implements Efl.Duplicate{
set { }
get { }
values {
handle: Efl_Text_Cursor_Handle @by_ref; [[The handle of the cursor object.]]
handle: Efl.Text_Cursor_Handle @by_ref; [[The handle of the cursor object.]]
}
}