summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-02-18 22:44:34 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-02-18 22:44:34 +0100
commit7bf178f343c212aefbba88b74bc0e68e8b87b318 (patch)
tree2c550f012c7cfc03812b7e87129b6200d6180cfa
parent1644d262d2c577b1592a60914ec034a1e91171b7 (diff)
downloadportato-7bf178f343c212aefbba88b74bc0e68e8b87b318.tar.gz
portato-7bf178f343c212aefbba88b74bc0e68e8b87b318.tar.bz2
portato-7bf178f343c212aefbba88b74bc0e68e8b87b318.zip
Remove the 'Popup' class
-rw-r--r--portato/gui/windows/basic.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/portato/gui/windows/basic.py b/portato/gui/windows/basic.py
index 9d1b9ed..d7c7940 100644
--- a/portato/gui/windows/basic.py
+++ b/portato/gui/windows/basic.py
@@ -121,15 +121,3 @@ class AbstractDialog (Window):
def close (self, *args):
self.window.destroy()
-
-class Popup (UIBuilder):
-
- __file__ = "popups"
-
- def __init__ (self, name, parent):
-
- UIBuilder.__init__(self, connector = parent)
- self._popup = self.tree.get_widget(name)
-
- def popup (self, *args):
- self._popup.popup(*args)