X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fmobilegtd.git;a=blobdiff_plain;f=src%2Fgui%2Fgui.py;h=ea288a3d7ef8b876798824aaae955e6c5d78c053;hp=33f8973fa8ddaafaa9b6f1cac3d8161d901018b3;hb=f4c5b327a5fb8541547d943f067623bafcad2645;hpb=0be176c06676dcaf537a4fbb262a8c655c74cff9 diff --git a/src/gui/gui.py b/src/gui/gui.py index 33f8973..ea288a3 100644 --- a/src/gui/gui.py +++ b/src/gui/gui.py @@ -137,14 +137,13 @@ class View(object): def exit(self): self.exit_flag = True self.lock.signal() - super(View, self).exit() def refresh(self): """ Update the gui after a change in model or some user interaction. Should be filled by subclasses. """ - super(View, self).refresh() + pass def get_menu_entries(self): """ Returns a list of menu entries to display. Will be @@ -165,7 +164,7 @@ class ListView(View): This function is called when the user selects an an entry (e.g., navigates to it and push the ok button). """ - super(ListView).entry_selected() + pass def update(self,subject=None): #logger.log(u'Updated %s'%repr(self))