diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-18 22:44:34 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-18 22:44:34 +0100 |
commit | 7bf178f343c212aefbba88b74bc0e68e8b87b318 (patch) | |
tree | 2c550f012c7cfc03812b7e87129b6200d6180cfa /portato/gui/windows | |
parent | 1644d262d2c577b1592a60914ec034a1e91171b7 (diff) | |
download | portato-7bf178f343c212aefbba88b74bc0e68e8b87b318.tar.gz portato-7bf178f343c212aefbba88b74bc0e68e8b87b318.tar.bz2 portato-7bf178f343c212aefbba88b74bc0e68e8b87b318.zip |
Remove the 'Popup' class
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/basic.py | 12 |
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) |