diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-03 20:42:45 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-03 20:42:45 -0400 |
| commit | 0fb45ba84d7a948508b30e0b140910ae906b4d9d (patch) | |
| tree | 6f741a92f74c0bdfca9d00f82902751059dbb2d6 /redo/control_windows.go | |
| parent | a4fac48192557e905e65f7995ac6819af8da27b6 (diff) | |
Did the previous commit, but for the Windows backend.
Diffstat (limited to 'redo/control_windows.go')
| -rw-r--r-- | redo/control_windows.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/redo/control_windows.go b/redo/control_windows.go index 90e41be..ac3297e 100644 --- a/redo/control_windows.go +++ b/redo/control_windows.go @@ -5,6 +5,11 @@ package ui // #include "winapi_windows.h" import "C" +type controlPrivate interface { + // TODO + Control +} + type controlbase struct { hwnd C.HWND parent C.HWND // for Tab and Group @@ -43,7 +48,7 @@ func basecommitResize(c *controlbase, a *allocation, d *sizing) { C.moveWindow(c.hwnd, C.int(a.x), C.int(a.y), C.int(a.width), C.int(a.height)) } -func basegetAuxResizeInfo(d *sizing) { +func basegetAuxResizeInfo(c controlPrivate, d *sizing) { // do nothing } |
