diff options
| author | Pietro Gagliardi <[email protected]> | 2018-08-11 19:52:29 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2018-08-11 19:54:07 -0400 |
| commit | 5ab5777d4cbfe6490760ef4e618bd5fe80a20bea (patch) | |
| tree | dcbf3e07665b1918b2c36fbcbb419ef370437810 /control.go | |
| parent | 97c3d186f1bc249d77e1084d127e06f9f198685d (diff) | |
More control conversion and syncing.
Diffstat (limited to 'control.go')
| -rw-r--r-- | control.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -92,7 +92,7 @@ func (c *ControlBase) Handle() uintptr { } func (c *ControlBase) Visible() bool { - return frombool(C.uiControlVisible(c.c)) + return tobool(C.uiControlVisible(c.c)) } func (c *ControlBase) Show() { @@ -104,7 +104,7 @@ func (c *ControlBase) Hide() { } func (c *ControlBase) Enabled() bool { - return frombool(C.uiControlEnabled(c.c)) + return tobool(C.uiControlEnabled(c.c)) } func (c *ControlBase) Enable() { |
