diff options
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 0eec034..184d29b 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -98,7 +98,6 @@ class PackageTable: # views self.views = map (lambda x: self.tree.get_widget(x).get_child(), [ - "filesScroll", "dependencyScroll", "useListScroll" ]) @@ -523,16 +522,6 @@ class MainWindow (Window): # the different scrolls - def show_files (p): - try: - for f in p.get_files(): - yield " %s\n" % f - except IOError, e: - yield _("Error: %s") % e.strerror - - filesScroll = self.tree.get_widget("filesScroll") - filesScroll.add(InstalledOnlyView(show_files)) - depScroll = self.tree.get_widget("dependencyScroll") depScroll.add(self.build_dep_list()) |