diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-28 21:32:49 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-28 21:32:49 -0400 |
| commit | 07ecf4dd6b4926bf8d2cba2d80260fa2a71901c7 (patch) | |
| tree | 60bf163ca0936e6ba39885d64629ddb274af34b6 /comctl_windows.go | |
| parent | b13c86c707b1211c03d39a59d11842c8676f94a4 (diff) | |
Got rid of another TODO about GetLastError() in the same way as earlier (this time in stdfont_windows.go); also fixed capitalization on the earlier one.
Diffstat (limited to 'comctl_windows.go')
| -rw-r--r-- | comctl_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comctl_windows.go b/comctl_windows.go index a52e19c..1d0e221 100644 --- a/comctl_windows.go +++ b/comctl_windows.go @@ -115,7 +115,7 @@ func initCommonControls() (err error) { comctl32 = syscall.NewLazyDLL("comctl32.dll") r1, _, err := comctl32.NewProc("InitCommonControlsEx").Call(uintptr(unsafe.Pointer(&icc))) if r1 == _FALSE { // failure - return fmt.Errorf("error initializing Common Controls (comctl32.dll); windows last error: %v", err) + return fmt.Errorf("error initializing Common Controls (comctl32.dll); Windows last error: %v", err) } return nil } |
