Changeset 1667:ecd837316bfe

Show
Ignore:
Timestamp:
11/19/08 22:38:31 (7 weeks ago)
Author:
Ali Afshar <aafshar@…>
Message:

Fixed incorrect option callback args in some places

Location:
pida/services
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pida/services/plugins/plugins.py

    r1617 r1667  
    393393        self.svc.rpc_url = option.value 
    394394 
    395     def on_check_for_updates(self, client, id, entry, option): 
     395    def on_check_for_updates(self, option): 
    396396        self.svc.check_for_updates(option.value) 
    397397 
  • pida/services/window/window.py

    r1636 r1667  
    241241        self.svc.get_action(option.name).set_active(option.value) 
    242242 
    243     def on_color_change(self, client, id, entry, option): 
     243    def on_color_change(self, option): 
    244244        self.svc.update_colors() 
    245245