efl_ui_text, efl_ui_clock: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-10 15:50:58 +01:00
parent f459e885ef
commit d47e3f3d20
2 changed files with 5 additions and 5 deletions

View File

@ -95,7 +95,7 @@ class Efl.Ui.Clock (Elm.Layout)
*/ */
set {} get {} set {} get {}
values { values {
fmt: const(char)* @nullable; [[The clock format.]] fmt: string @nullable; [[The clock format.]]
} }
} }
@property pause { @property pause {
@ -139,7 +139,7 @@ class Efl.Ui.Clock (Elm.Layout)
} }
keys { keys {
mintime: Efl.Time*; [[Time structure containing the minimum time value.]] mintime: ptr(Efl.Time); [[Time structure containing the minimum time value.]]
} }
} }
@property value_max { @property value_max {
@ -166,7 +166,7 @@ class Efl.Ui.Clock (Elm.Layout)
} }
keys { keys {
maxtime: Efl.Time*; [[Time structure containing the minimum time value.]] maxtime: ptr(Efl.Time); [[Time structure containing the minimum time value.]]
} }
} }
@property value { @property value {
@ -192,7 +192,7 @@ class Efl.Ui.Clock (Elm.Layout)
return: bool; [[$true on success, $false otherwise]] return: bool; [[$true on success, $false otherwise]]
} }
keys { keys {
curtime: Efl.Time*; [[Time structure containing the minimum time value.]] curtime: ptr(Efl.Time); [[Time structure containing the minimum time value.]]
} }
} }
@property field_visible { @property field_visible {

View File

@ -25,7 +25,7 @@ struct Efl.Ui.Text.Hover_Parent
struct Efl.Ui.Text.Anchor_Hover_Info struct Efl.Ui.Text.Anchor_Hover_Info
{ {
[[EFL text anchor hover information]] [[EFL text anchor hover information]]
anchor_info: const(Efl.Ui.Text.Anchor_Info)*; [[The actual anchor info.]] anchor_info: ptr(const(Efl.Ui.Text.Anchor_Info)); [[The actual anchor info.]]
hover: Elm.Hover; [[The hover object to use for the popup.]] hover: Elm.Hover; [[The hover object to use for the popup.]]
hover_parent: Efl.Ui.Text.Hover_Parent; [[Hover parent widget]] hover_parent: Efl.Ui.Text.Hover_Parent; [[Hover parent widget]]
hover_left : bool; [[Hint indicating if there's space hover_left : bool; [[Hint indicating if there's space