summaryrefslogtreecommitdiff
path: root/redo/controls_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-17 23:45:12 -0400
committerPietro Gagliardi <[email protected]>2014-07-17 23:45:12 -0400
commit6a5a28d917015c9bca730f9ffd3748011fe3528d (patch)
tree5a4fba8c11bb6fdcaf5b69e792a3f6b1420e8d14 /redo/controls_windows.go
parentd8f302f15728ab6222310657e508cf4480080c79 (diff)
Migrated common_windows.go to C. Now to nuke unneeded files and fix compiler errors...
Diffstat (limited to 'redo/controls_windows.go')
-rw-r--r--redo/controls_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/controls_windows.go b/redo/controls_windows.go
index 8f82eac..a553144 100644
--- a/redo/controls_windows.go
+++ b/redo/controls_windows.go
@@ -37,7 +37,7 @@ func (w *widgetbase) text() *Request {
c := make(chan interface{})
return &Request{
op: func() {
- c <- C.GoString(C.getWindowText(w.hwnd))
+ c <- getWindowText(w.hwnd)
},
resp: c,
}