summaryrefslogtreecommitdiff
path: root/sysdata_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-16 18:06:45 -0500
committerPietro Gagliardi <[email protected]>2014-02-16 18:06:45 -0500
commitb8f7f4aa6e7d0761c731c1f116b7b8f7a8c19b9a (patch)
treefd4527902f14feff5b481cf9b432dc67acd8f877 /sysdata_unix.go
parent622d7b15696d50767737e5d5621c647a818b91b9 (diff)
Removed some debugging prints.
Diffstat (limited to 'sysdata_unix.go')
-rw-r--r--sysdata_unix.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdata_unix.go b/sysdata_unix.go
index 6f9e001..bf6ce49 100644
--- a/sysdata_unix.go
+++ b/sysdata_unix.go
@@ -88,7 +88,6 @@ func (s *sysData) make(initText string, window *sysData) error {
ret <- ct.make()
}
s.widget = <-ret
-println(s.widget)
if window == nil {
uitask <- func() {
fixed := gtk_fixed_new()
@@ -157,7 +156,6 @@ if classTypes[s.ctype] == nil || classTypes[s.ctype].setText == nil { return nil
ret := make(chan struct{})
defer close(ret)
uitask <- func() {
-println(s.ctype, x, y, width, height)
gtk_fixed_move(s.container, s.widget, x, y)
gtk_widget_set_size_request(s.widget, width, height)
ret <- struct{}{}