summaryrefslogtreecommitdiff
path: root/control.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-10 14:59:39 -0400
committerPietro Gagliardi <[email protected]>2014-06-10 14:59:39 -0400
commit1e66637cd206066bced74b637e62283d9b367004 (patch)
tree3d0c5a96eb7c5dd48232c4c935d4ca70e94311af /control.go
parentad8a90ec7e4cfa8b6c3325cf2b2ce737c10f4804 (diff)
More go fmt.
Diffstat (limited to 'control.go')
-rw-r--r--control.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/control.go b/control.go
index d565adc..90ea014 100644
--- a/control.go
+++ b/control.go
@@ -2,10 +2,6 @@
package ui
-import (
- // ...
-)
-
// A Control represents an UI control. Note that Control contains unexported members; this has the consequence that you can't build custom controls that interface directly with the system-specific code (fo rinstance, to import an unsupported control), or at least not without some hackery. If you want to make your own controls, create an Area and provide an AreaHandler that does what you need.
type Control interface {
make(window *sysData) error