summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
Diffstat (limited to 'window.go')
-rw-r--r--window.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/window.go b/window.go
index c446123..784d485 100644
--- a/window.go
+++ b/window.go
@@ -26,7 +26,6 @@ func NewWindow(title string, width int, height int, hasMenubar bool) *Window {
w := new(Window)
ctitle := C.CString(title)
- // TODO wait why did I make these ints and not intmax_ts?
w.w = C.uiNewWindow(ctitle, C.int(width), C.int(height), frombool(hasMenubar))
freestr(ctitle)