- Timestamp:
- 04/29/08 10:51:47 (7 months ago)
- Files:
-
- 1 modified
-
pida/services/optionsmanager/optionsmanager.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pida/services/optionsmanager/optionsmanager.py
r1125 r1144 74 74 self._services = [] 75 75 for svc in self.svc.boss.get_services(): 76 if len(svc. get_options()):76 if len(svc.options): 77 77 self._services.append(svc) 78 78 self._services_display.append( … … 109 109 labelsizer = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) 110 110 widgetsizer = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) 111 options = list(svc. get_options().iter_options())111 options = list(svc.options.iter_options()) 112 112 options.sort() 113 113 for opt in options: … … 192 192 193 193 def plugin_changed(self, plugin): 194 if len(plugin. get_options()):194 if len(plugin.options): 195 195 self.svc.refresh_view() 196 196
