Set Value in SearchFormWidget is bugged

Bug #804478 reported by Matteo Boscolo
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
KDE OpenObject Client
New
Undecided
Unassigned

Bug Description

I'm try to use the setValue method in the SearchFormWidget

Actually the code is :
 def setValue(self, val):
  for x in val:
   if x in self.widgets:
    self.widgets[x].value = val[x]

the code must be corrected in this way:
 def setValue(self, val):
  for x in val:
   if x in self.widgets:
    self.widgets[x].setValue(val[x]) #<<<----

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.