Deprecate signal which is never emitted

This commit is contained in:
Nyall Dawson 2024-09-04 08:41:52 +10:00
parent c6233cb312
commit 4db6237246
3 changed files with 18 additions and 3 deletions

View File

@ -156,7 +156,13 @@ Emitted when a column in the view has been resized.
:param width: new width in pixel
%End
void finished();
void finished() /Deprecated/;
%Docstring
.. deprecated:: 3.40
No longer used.
%End
public slots:
void repaintRequested( const QModelIndexList &indexes );

View File

@ -156,7 +156,13 @@ Emitted when a column in the view has been resized.
:param width: new width in pixel
%End
void finished();
void finished() /Deprecated/;
%Docstring
.. deprecated:: 3.40
No longer used.
%End
public slots:
void repaintRequested( const QModelIndexList &indexes );

View File

@ -176,7 +176,10 @@ class GUI_EXPORT QgsAttributeTableView : public QgsTableView
*/
void columnResized( int column, int width );
void finished();
/**
* \deprecated QGIS 3.40. No longer used.
*/
Q_DECL_DEPRECATED void finished() SIP_DEPRECATED;
public slots:
void repaintRequested( const QModelIndexList &indexes );