Skip to content

Commit 50f87c1

Browse files
committedMar 25, 2019
add macros to Doxyfile.in
1 parent 9a6ddbd commit 50f87c1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
 

‎cmake_templates/Doxyfile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,9 @@ EXPAND_AS_DEFINED = "SIP_ABSTRACT" \
20662066
"SIP_TRANSFERTHIS" \
20672067
"SIP_VIRTUAL_CATCHER_CODE" \
20682068
"SIP_VIRTUALERRORHANDLER" \
2069-
"SIP_WHEN_FEATURE"
2069+
"SIP_WHEN_FEATURE" \
2070+
"SIP_MONKEYPATCH_SCOPEENUM" \
2071+
"SIP_MONKEYPATCH_SCOPEENUM_UNNEST"
20702072

20712073
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
20722074
# remove all references to function-like macros that are alone on a line, have

‎src/analysis/processing/qgsalgorithmrasterlogicalop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ bool QgsRasterBooleanLogicAlgorithmBase::prepareAlgorithm( const QVariantMap &pa
9090
rasterLayers.reserve( layers.count() );
9191
for ( QgsMapLayer *l : layers )
9292
{
93-
if ( l->type() == QgsMapLayer::RasterLayer )
93+
if ( l->type() == QgsMapLayerType::RasterLayer )
9494
{
9595
QgsRasterLayer *layer = qobject_cast< QgsRasterLayer * >( l );
9696
QgsRasterAnalysisUtils::RasterLogicInput input;

‎src/app/qgslabelinggui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void QgsLabelingGui::setLayer( QgsMapLayer *mapLayer )
108108
{
109109
mPreviewFeature = QgsFeature();
110110

111-
if ( !mapLayer || mapLayer->type() != QgsMapLayer::VectorLayer )
111+
if ( !mapLayer || mapLayer->type() != QgsMapLayerType::VectorLayer )
112112
{
113113
setEnabled( false );
114114
return;

0 commit comments

Comments
 (0)
Please sign in to comment.