summaryrefslogtreecommitdiff
path: root/asciifarm/client/display/widimp.py
diff options
context:
space:
mode:
Diffstat (limited to 'asciifarm/client/display/widimp.py')
-rw-r--r--asciifarm/client/display/widimp.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/asciifarm/client/display/widimp.py b/asciifarm/client/display/widimp.py
deleted file mode 100644
index 145aa6b..0000000
--- a/asciifarm/client/display/widimp.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-class WidImp:
-
- """widget implementation"""
-
- _widget = None
-
- def setWidget(self, widget):
- self._widget = widget
- self.change()
-
- def change(self):
- if self._widget is not None:
- self._widget.change()
-
- def update(self, win):
- pass