diff options
Diffstat (limited to 'new.go')
| -rw-r--r-- | new.go | 20 |
1 files changed, 2 insertions, 18 deletions
@@ -1,8 +1,6 @@ package repostatus import ( - "go.wit.com/log" - "go.wit.com/gui/gui" "go.wit.com/gui/gadgets" ) @@ -15,21 +13,7 @@ func New(p *gui.Node, path string) *RepoStatus { repopath: path, } rs.tags = make(map[string]string) - return rs -} - -func (rs *RepoStatus) InitWindow() { - if ! rs.Initialized() { - log.Log(WARN, "not initalized yet (no parent for the window?)") - return - } - if rs.window != nil { - log.Log(WARN, "You already have a window") - rs.ready = true - return - } - - log.Log(WARN, "Creating the Window") - rs.window = gadgets.NewBasicWindow(rs.parent, "GO Repo Details") + rs.window = gadgets.NewBasicWindow(p, "GO Repo Details") rs.ready = true + return rs } |
