summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-25 02:50:43 -0700
committerJeff Carr <[email protected]>2019-05-25 02:50:43 -0700
commit7b601a8e689ab4bc657f730f23c2c785b2fe7846 (patch)
tree40e6240ef1a2c632e6e24a2fe11a4bf162c174d6 /structs.go
parent3b096d81453417a656167d5cce37f045d0c92cb8 (diff)
update for the new protobuf
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index bf9c860..90da86f 100644
--- a/structs.go
+++ b/structs.go
@@ -58,7 +58,7 @@ type GuiDataStructure struct {
// account entry textboxes
Config *pb.Config
- Current *pb.Config_Account
+ Current *pb.Account
// A map of all buttons everywhere on all
// windows, all tabs, across all goroutines
@@ -102,7 +102,7 @@ type TableColumnData struct {
type ButtonMap struct {
B *ui.Button
FB *ui.FontButton
- Account *pb.Config_Account
+ Account *pb.Account
VM *pb.Event_VM
Action string // what type of button
aTab *GuiTabStructure
@@ -177,7 +177,7 @@ type TableData struct {
Cells [20]CellData
Human [20]HumanMap
- Account *pb.Config_Account // what account this table is for
+ Account *pb.Account // what account this table is for
lastRow int
lastColumn int