mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
followup f33c4904d3b: add Q_DECL_DEPRECATED and sip annotation to hasCrsTransformEnabled signal
This commit is contained in:
parent
d8b55a2a5a
commit
7ca60b30e5
@ -268,7 +268,7 @@ class QgsMapRenderer : QObject
|
||||
|
||||
void drawingProgress( int current, int total );
|
||||
|
||||
void hasCrsTransformEnabled( bool flag );
|
||||
void hasCrsTransformEnabled( bool flag ) /Deprecated/;
|
||||
void hasCrsTransformEnabledChanged( bool flag );
|
||||
|
||||
void destinationSrsChanged();
|
||||
|
@ -308,6 +308,9 @@ class CORE_EXPORT QgsMapRenderer : public QObject
|
||||
* @param flag true if transformation is enabled.
|
||||
* @deprecated Use hasCrsTransformEnabledChanged( bool flag )
|
||||
* to avoid conflict with method of the same name). */
|
||||
#ifndef Q_MOC_RUN
|
||||
Q_DECL_DEPRECATED
|
||||
#endif
|
||||
void hasCrsTransformEnabled( bool flag );
|
||||
|
||||
/** This signal is emitted when CRS transformation is enabled/disabled.
|
||||
|
Loading…
x
Reference in New Issue
Block a user