summaryrefslogtreecommitdiff
path: root/redo/controls_windows.go
diff options
context:
space:
mode:
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,
}