summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
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