diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-25 11:31:57 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-25 11:31:57 -0400 |
| commit | eb0188a0999b7a7c1746b06a6c22e147cf3f1ac6 (patch) | |
| tree | e16c9021de42396061f3c01bf7205aa62f039b09 /controls_windows.go | |
| parent | 0d23bda925359ae6d240b25f20dc544207ce8106 (diff) | |
Changed most instances of var to const in the Windows code. Only one left...
Diffstat (limited to 'controls_windows.go')
| -rw-r--r-- | controls_windows.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/controls_windows.go b/controls_windows.go index 991e879..86c4eba 100644 --- a/controls_windows.go +++ b/controls_windows.go @@ -179,7 +179,7 @@ const ( ) // Combobox errors. -var ( // var so they can be cast to uintptr +const ( // from winuser.h _CB_ERR = (-1) _CB_ERRSPACE = (-2) @@ -356,7 +356,7 @@ const ( ) // Listbox errors. -var ( // var so they can be cast to uintptr +const ( // from winuser.h _LB_OKAY = 0 _LB_ERR = (-1) |
