Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix setting manual table content through PyQGIS
Fixes #44871
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Dec 15, 2021
1 parent 035fc5d commit 992b5e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/auto_generated/qgstablecell.sip.in
Expand Up @@ -192,7 +192,7 @@ Sets the ``properties`` for the cell.
typedef QVector<QgsTableCell> QgsTableRow;


typedef QVector<QVector<QgsTableRow>> QgsTableContents;
typedef QVector<QVector<QgsTableCell>> QgsTableContents;


/************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgstablecell.h
Expand Up @@ -225,7 +225,7 @@ typedef QVector<QgsTableRow> QgsTableContents;
*
* \since QGIS 3.12
*/
typedef QVector<QVector<QgsTableRow>> QgsTableContents;
typedef QVector<QVector<QgsTableCell>> QgsTableContents;
#endif


Expand Down

0 comments on commit 992b5e6

Please sign in to comment.