summaryrefslogtreecommitdiff
path: root/redo/uitask_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-05 12:29:37 -0400
committerPietro Gagliardi <[email protected]>2014-08-05 12:29:37 -0400
commit57df87f11d0d77da35ee624241d6177918a7215a (patch)
tree4546fd1e744bd8fda1d60bf147a3a6d86d6c292b /redo/uitask_windows.go
parentfada6849c440f8ba5b0d2604c854d85d73f9b1f3 (diff)
Fixed lots of syntax errors, including one where I forgot a parameter to a Windows API call, oops... the problem is present in the main package being replaced too. :x It will be fixed when I move this redo up. Also added Area initializer to uiinit(). NOW does it work???
Diffstat (limited to 'redo/uitask_windows.go')
-rw-r--r--redo/uitask_windows.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/redo/uitask_windows.go b/redo/uitask_windows.go
index 71b097c..0f8fa4b 100644
--- a/redo/uitask_windows.go
+++ b/redo/uitask_windows.go
@@ -33,6 +33,9 @@ func uiinit() error {
if err := makeContainerWindowClass(); err != nil {
return fmt.Errorf("error creating container window class: %v", err)
}
+ if err := makeAreaWindowClass(); err != nil {
+ return fmt.Errorf("error creating Area window class: %v", err)
+ }
return nil
}