Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-04-17 19:51:21 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-04-17 19:51:21 +0300
commit1e192a832ff913e517e5d294fdba2fa615fb6e6d (patch)
tree8691fd248056e0bba97d57f008543c8855154405 /interfaces
parentd83a45e29594736fc26e6739c72e508c2d11c1f0 (diff)
added Name() to IPanel, removed parentPanel which is no longer used
Diffstat (limited to 'interfaces')
-rwxr-xr-xinterfaces/IPanel.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/interfaces/IPanel.go b/interfaces/IPanel.go
index 4f9f0b5..bca9a8d 100755
--- a/interfaces/IPanel.go
+++ b/interfaces/IPanel.go
@@ -5,6 +5,7 @@ import (
)
type IPanel interface {
+ Name() string
Grid() *gtk.Grid
PreShow()
Show()