diff options
| author | Jeff Carr <[email protected]> | 2019-05-30 08:55:54 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-30 08:55:54 -0700 |
| commit | 3abb0b92f481341bc80da3b971956e34d2f2ef07 (patch) | |
| tree | 580c7a93d0749d3c048db810bb0f234d1b9732ac /debug.go | |
| parent | 5ad5afee4d9cc4b6abb527ded4ff321807af2f0f (diff) | |
more variable name fixes
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -80,7 +80,7 @@ func addDebuggingButtons(wm *GuiWindow, vbox *ui.Box) { vbox.Append(CreateButton(wm, nil, nil, "Load test.json config file", "CONFIG", nil), false) } -func runTestHide(b *ButtonMap) { +func runTestHide(b *GuiButton) { /* log.Println("runTestHide START") Data.Window1.Box1.Hide() @@ -91,7 +91,7 @@ func runTestHide(b *ButtonMap) { */ } -func runPingClick(b *ButtonMap) { +func runPingClick(b *GuiButton) { log.Println("runPingClick START") log.Println("runTestExecClick b.VM", b.VM) hostname := "localhost" @@ -105,7 +105,7 @@ func runPingClick(b *ButtonMap) { log.Println("runPingClick END") } -func runTestExecClick(b *ButtonMap) { +func runTestExecClick(b *GuiButton) { log.Println("runTestExecClick START") if runtime.GOOS == "linux" { go runSimpleCommand("xterm -report-fonts") |
