mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Deprecate signal which is never emitted
This commit is contained in:
parent
c6233cb312
commit
4db6237246
@ -156,7 +156,13 @@ Emitted when a column in the view has been resized.
|
|||||||
:param width: new width in pixel
|
:param width: new width in pixel
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void finished();
|
void finished() /Deprecated/;
|
||||||
|
%Docstring
|
||||||
|
|
||||||
|
.. deprecated:: 3.40
|
||||||
|
|
||||||
|
No longer used.
|
||||||
|
%End
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void repaintRequested( const QModelIndexList &indexes );
|
void repaintRequested( const QModelIndexList &indexes );
|
||||||
|
@ -156,7 +156,13 @@ Emitted when a column in the view has been resized.
|
|||||||
:param width: new width in pixel
|
:param width: new width in pixel
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void finished();
|
void finished() /Deprecated/;
|
||||||
|
%Docstring
|
||||||
|
|
||||||
|
.. deprecated:: 3.40
|
||||||
|
|
||||||
|
No longer used.
|
||||||
|
%End
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void repaintRequested( const QModelIndexList &indexes );
|
void repaintRequested( const QModelIndexList &indexes );
|
||||||
|
@ -176,7 +176,10 @@ class GUI_EXPORT QgsAttributeTableView : public QgsTableView
|
|||||||
*/
|
*/
|
||||||
void columnResized( int column, int width );
|
void columnResized( int column, int width );
|
||||||
|
|
||||||
void finished();
|
/**
|
||||||
|
* \deprecated QGIS 3.40. No longer used.
|
||||||
|
*/
|
||||||
|
Q_DECL_DEPRECATED void finished() SIP_DEPRECATED;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void repaintRequested( const QModelIndexList &indexes );
|
void repaintRequested( const QModelIndexList &indexes );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user