Skip to content

Commit e2edc54

Browse files
committed
Compilation fix
1 parent 0c4ea1f commit e2edc54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6577,7 +6577,7 @@ void QgisApp::pasteStyle( QgsMapLayer * destinationLayer )
65776577
QDomElement rootNode = doc.firstChildElement( "qgis" );
65786578

65796579
//Test for matching geometry type on vector layers when pasting
6580-
if (selectionLayer->type() == QgsMapLayer::LayerType::VectorLayer)
6580+
if (selectionLayer->type() == QgsMapLayer::VectorLayer)
65816581
{
65826582
QgsVectorLayer *selectionVectorLayer = static_cast<QgsVectorLayer*>(selectionLayer);
65836583
int pasteLayerGeometryType = doc.elementsByTagName("layerGeometryType").item(0).toElement().text().toInt();

0 commit comments

Comments
 (0)