diff options
author | Gabriel de Dietrich <gabriel.dietrich-de@nokia.com> | 2009-09-25 17:59:12 (GMT) |
---|---|---|
committer | Gabriel de Dietrich <gabriel.dietrich-de@nokia.com> | 2009-10-06 12:03:18 (GMT) |
commit | 0d51611fa524091ddca3c6c11edb0eae8ffe3b02 (patch) | |
tree | 12d7a29651988a017758609208f9ad79cc8cf83d /src/gui/itemviews/qtableview.h | |
parent | 6c14af1cdb02d1d6957ad23ec435e2b95dda5b4a (diff) | |
download | Qt-0d51611fa524091ddca3c6c11edb0eae8ffe3b02.zip Qt-0d51611fa524091ddca3c6c11edb0eae8ffe3b02.tar.gz Qt-0d51611fa524091ddca3c6c11edb0eae8ffe3b02.tar.bz2 |
Span update after row and column insertion and removal in QTableView.
The feature had not been implemented yet. Auto-test and benchmark included.
As a bonus, single cell spans are no longer added to the span collection.
Reviewed-by: Thierry
Task-number: 245327
Task-number: QTBUG-3610
Diffstat (limited to 'src/gui/itemviews/qtableview.h')
-rw-r--r-- | src/gui/itemviews/qtableview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/itemviews/qtableview.h b/src/gui/itemviews/qtableview.h index a08d6a9..541c419 100644 --- a/src/gui/itemviews/qtableview.h +++ b/src/gui/itemviews/qtableview.h @@ -182,6 +182,10 @@ private: Q_DISABLE_COPY(QTableView) Q_PRIVATE_SLOT(d_func(), void _q_selectRow(int)) Q_PRIVATE_SLOT(d_func(), void _q_selectColumn(int)) + Q_PRIVATE_SLOT(d_func(), void _q_updateSpanInsertedRows(QModelIndex,int,int)) + Q_PRIVATE_SLOT(d_func(), void _q_updateSpanInsertedColumns(QModelIndex,int,int)) + Q_PRIVATE_SLOT(d_func(), void _q_updateSpanRemovedRows(QModelIndex,int,int)) + Q_PRIVATE_SLOT(d_func(), void _q_updateSpanRemovedColumns(QModelIndex,int,int)) }; #endif // QT_NO_TABLEVIEW |