changeset 95:996d862896fb

Fixed function definition errors preventing compilation with go 1.5.
author Brian Smith <brian@dbsoft.org>
date Wed, 11 Nov 2015 22:45:27 -0600
parents 63d6eb6fcb17
children ad6bd34d7777
files src/dw/dw.go
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/dw/dw.go	Tue Oct 22 15:12:05 2013 -0500
+++ b/src/dw/dw.go	Wed Nov 11 22:45:27 2015 -0600
@@ -3205,7 +3205,7 @@
 }
 
 // Create a new radiobutton widget to be packed.
-func RadioButtonNew(text string id uint) HBUTTON {
+func RadioButtonNew(text string, id uint) HBUTTON {
     return Radiobutton_new(text, id); 
 }
 
@@ -3218,7 +3218,7 @@
 }
 
 // Create a new checkbox widget to be packed.
-func CheckButtonNew(text string id uint) HBUTTON {
+func CheckButtonNew(text string, id uint) HBUTTON {
     return Checkbox_new(text, id);
 }