File tree 6 files changed +6
-12
lines changed
6 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -427,6 +427,9 @@ class QgsMapLayer : QObject
427
427
/** Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode() */
428
428
void blendModeChanged( const QPainter::CompositionMode &blendMode );
429
429
430
+ /** Signal emitted when renderer is changed */
431
+ void rendererChanged();
432
+
430
433
protected:
431
434
/** Set the extent */
432
435
virtual void setExtent( const QgsRectangle &rect );
Original file line number Diff line number Diff line change @@ -1239,9 +1239,6 @@ class QgsVectorLayer : QgsMapLayer
1239
1239
*/
1240
1240
void labelingFontNotFound( QgsVectorLayer* layer, const QString& fontfamily );
1241
1241
1242
- /** Signal emitted on symbology changes, when setRendererV2() is called */
1243
- void rendererChanged();
1244
-
1245
1242
/** Signal emitted when setFeatureBlendMode() is called */
1246
1243
void featureBlendModeChanged( const QPainter::CompositionMode &blendMode );
1247
1244
Original file line number Diff line number Diff line change @@ -229,9 +229,6 @@ class QgsRasterLayer : QgsMapLayer
229
229
*/
230
230
void dataChanged();
231
231
232
- /** Signal emitted when the symbology changes, through call to setRenderer() */
233
- void rendererChanged();
234
-
235
232
protected:
236
233
/** \brief Read the symbology for the current layer from the Dom node supplied */
237
234
bool readSymbology( const QDomNode& node, QString& errorMessage );
Original file line number Diff line number Diff line change @@ -443,6 +443,9 @@ class CORE_EXPORT QgsMapLayer : public QObject
443
443
/* * Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode() */
444
444
void blendModeChanged ( const QPainter::CompositionMode &blendMode );
445
445
446
+ /* * Signal emitted when renderer is changed */
447
+ void rendererChanged ();
448
+
446
449
protected:
447
450
/* * Set the extent */
448
451
virtual void setExtent ( const QgsRectangle &rect );
Original file line number Diff line number Diff line change @@ -1584,9 +1584,6 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
1584
1584
*/
1585
1585
void labelingFontNotFound ( QgsVectorLayer* layer, const QString& fontfamily );
1586
1586
1587
- /* * Signal emitted on symbology changes, when setRendererV2() is called */
1588
- void rendererChanged ();
1589
-
1590
1587
/* * Signal emitted when setFeatureBlendMode() is called */
1591
1588
void featureBlendModeChanged ( const QPainter::CompositionMode &blendMode );
1592
1589
Original file line number Diff line number Diff line change @@ -389,9 +389,6 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
389
389
*/
390
390
void dataChanged ();
391
391
392
- /* * Signal emitted when the symbology changes, through call to setRenderer() */
393
- void rendererChanged ();
394
-
395
392
protected:
396
393
/* * \brief Read the symbology for the current layer from the Dom node supplied */
397
394
bool readSymbology ( const QDomNode& node, QString& errorMessage );
You can’t perform that action at this time.
0 commit comments