File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2066,7 +2066,9 @@ EXPAND_AS_DEFINED = "SIP_ABSTRACT" \
2066
2066
"SIP_TRANSFERTHIS" \
2067
2067
"SIP_VIRTUAL_CATCHER_CODE" \
2068
2068
"SIP_VIRTUALERRORHANDLER" \
2069
- "SIP_WHEN_FEATURE"
2069
+ "SIP_WHEN_FEATURE" \
2070
+ "SIP_MONKEYPATCH_SCOPEENUM" \
2071
+ "SIP_MONKEYPATCH_SCOPEENUM_UNNEST"
2070
2072
2071
2073
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
2072
2074
# remove all references to function-like macros that are alone on a line, have
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ bool QgsRasterBooleanLogicAlgorithmBase::prepareAlgorithm( const QVariantMap &pa
90
90
rasterLayers.reserve ( layers.count () );
91
91
for ( QgsMapLayer *l : layers )
92
92
{
93
- if ( l->type () == QgsMapLayer ::RasterLayer )
93
+ if ( l->type () == QgsMapLayerType ::RasterLayer )
94
94
{
95
95
QgsRasterLayer *layer = qobject_cast< QgsRasterLayer * >( l );
96
96
QgsRasterAnalysisUtils::RasterLogicInput input;
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ void QgsLabelingGui::setLayer( QgsMapLayer *mapLayer )
108
108
{
109
109
mPreviewFeature = QgsFeature ();
110
110
111
- if ( !mapLayer || mapLayer->type () != QgsMapLayer ::VectorLayer )
111
+ if ( !mapLayer || mapLayer->type () != QgsMapLayerType ::VectorLayer )
112
112
{
113
113
setEnabled ( false );
114
114
return ;
You can’t perform that action at this time.
0 commit comments