Skip to content

Commit

Permalink
qobserver: fix a misspelled QComboBox
Browse files Browse the repository at this point in the history
Signed-off-by: David Aguilar <davvid@gmail.com>
  • Loading branch information
davvid committed Apr 20, 2009
1 parent 6f6f0a1 commit e492cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cola/qobserver.py
Expand Up @@ -284,7 +284,7 @@ def subject_changed(self, param, value):
date = QtCore.QDate.fromString(value, fmt)
if date:
widget.setDate(date)
elif isinstance(widget, QtCore.QComboBox):
elif isinstance(widget, QtGui.QComboBox):
self.model.set_param(param+'_item', '')
widget.clear()
for item in value:
Expand Down

0 comments on commit e492cd9

Please sign in to comment.