Fix setting manual table content through PyQGIS

Fixes #44871
This commit is contained in:
Nyall Dawson 2021-12-14 10:48:16 +10:00
parent 4e50050de0
commit e26a367741
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ Sets the ``properties`` for the cell.
typedef QVector<QgsTableCell> QgsTableRow; typedef QVector<QgsTableCell> QgsTableRow;
typedef QVector<QVector<QgsTableRow>> QgsTableContents; typedef QVector<QVector<QgsTableCell>> QgsTableContents;
/************************************************************************ /************************************************************************

View File

@ -225,7 +225,7 @@ typedef QVector<QgsTableRow> QgsTableContents;
* *
* \since QGIS 3.12 * \since QGIS 3.12
*/ */
typedef QVector<QVector<QgsTableRow>> QgsTableContents; typedef QVector<QVector<QgsTableCell>> QgsTableContents;
#endif #endif