summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-06 19:35:18 -0500
committerJeff Carr <[email protected]>2025-10-06 19:35:18 -0500
commita45fd1beed715914b36baf6c9dfa157801b75d6d (patch)
tree041322428ff435d3b0b5c800337fa627922adf75
parentfd9662928abbe7b1f1e6975b7e2e851f955a8b68 (diff)
rm old code
-rw-r--r--helperPatches.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/helperPatches.go b/helperPatches.go
index a6e4809..790ffda 100644
--- a/helperPatches.go
+++ b/helperPatches.go
@@ -16,43 +16,6 @@ import (
"go.wit.com/log"
)
-func makeReposTablePB(pb *gitpb.Repos) *gitpb.ReposTable {
- t := pb.NewTable("quickListRepos")
- t.NewUuid()
-
- sf := t.AddStringFunc("Namespace", func(r *gitpb.Repo) string {
- return r.GetNamespace()
- })
- sf.Width = 16
-
- userVer := t.AddStringFunc("user", func(repo *gitpb.Repo) string {
- ver := repo.GetUserVersion()
- return ver
- })
- userVer.Width = 4
- return t
-}
-
-/*
-type stdPatchsetTableWin struct {
- sync.Mutex
- win *gadgets.GenericWindow // the machines gui window
- box *gui.Node // the machines gui parent box widget
- TB *forgepb.SetsTable // the gui table buffer
- update bool // if the window should be updated
-}
-
-func (w *stdPatchsetTableWin) Toggle() {
- if w == nil {
- return
- }
- if w.win == nil {
- return
- }
- w.win.Toggle()
-}
-*/
-
/*
etimef := func(e *forgepb.Set) string {
etime := e.Etime.AsTime()