summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/qcombobox.h
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-10-27 14:18:59 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-10-27 14:20:05 (GMT)
commitc79d83b6d661ea49d893b4590480a434d75b19bd (patch)
treece3a7ca4528080f7ff6d7ffdb9f4c86083a90d99 /src/gui/widgets/qcombobox.h
parent8f040ea4da93f1b9cae1db560e5e9f9b3140b3ff (diff)
downloadQt-c79d83b6d661ea49d893b4590480a434d75b19bd.zip
Qt-c79d83b6d661ea49d893b4590480a434d75b19bd.tar.gz
Qt-c79d83b6d661ea49d893b4590480a434d75b19bd.tar.bz2
QComboBox did not emit currentItemChanged when the model was reset
Task-number: QTBUG-569 Reviewed-by: ogoffart
Diffstat (limited to 'src/gui/widgets/qcombobox.h')
-rw-r--r--src/gui/widgets/qcombobox.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/widgets/qcombobox.h b/src/gui/widgets/qcombobox.h
index 6a85096..4089a09 100644
--- a/src/gui/widgets/qcombobox.h
+++ b/src/gui/widgets/qcombobox.h
@@ -308,9 +308,8 @@ private:
Q_PRIVATE_SLOT(d_func(), void _q_returnPressed())
Q_PRIVATE_SLOT(d_func(), void _q_resetButton())
Q_PRIVATE_SLOT(d_func(), void _q_dataChanged(const QModelIndex &, const QModelIndex &))
- Q_PRIVATE_SLOT(d_func(), void _q_rowsAboutToBeInserted(const QModelIndex & parent, int start, int end))
+ Q_PRIVATE_SLOT(d_func(), void _q_updateIndexBeforeChange())
Q_PRIVATE_SLOT(d_func(), void _q_rowsInserted(const QModelIndex & parent, int start, int end))
- Q_PRIVATE_SLOT(d_func(), void _q_rowsAboutToBeRemoved(const QModelIndex & parent, int start, int end))
Q_PRIVATE_SLOT(d_func(), void _q_rowsRemoved(const QModelIndex & parent, int start, int end))
Q_PRIVATE_SLOT(d_func(), void _q_modelDestroyed())
Q_PRIVATE_SLOT(d_func(), void _q_modelReset())