mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
fix failed assertion when sld import fails
This commit is contained in:
parent
84625ee476
commit
ada8d402b2
@ -304,28 +304,28 @@ QgsFeatureRendererV2* QgsSingleSymbolRendererV2::createFromSld( QDomElement& ele
|
|||||||
childElem = childElem.nextSiblingElement();
|
childElem = childElem.nextSiblingElement();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( layers.size() == 0 )
|
||||||
|
return NULL;
|
||||||
|
|
||||||
// now create the symbol
|
// now create the symbol
|
||||||
QgsSymbolV2 *symbol = 0;
|
QgsSymbolV2 *symbol;
|
||||||
if ( layers.size() > 0 )
|
switch ( geomType )
|
||||||
{
|
{
|
||||||
switch ( geomType )
|
case QGis::Line:
|
||||||
{
|
symbol = new QgsLineSymbolV2( layers );
|
||||||
case QGis::Line:
|
break;
|
||||||
symbol = new QgsLineSymbolV2( layers );
|
|
||||||
break;
|
|
||||||
|
|
||||||
case QGis::Polygon:
|
case QGis::Polygon:
|
||||||
symbol = new QgsFillSymbolV2( layers );
|
symbol = new QgsFillSymbolV2( layers );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case QGis::Point:
|
case QGis::Point:
|
||||||
symbol = new QgsMarkerSymbolV2( layers );
|
symbol = new QgsMarkerSymbolV2( layers );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
QgsDebugMsg( QString( "invalid geometry type: found %1" ).arg( geomType ) );
|
QgsDebugMsg( QString( "invalid geometry type: found %1" ).arg( geomType ) );
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// and finally return the new renderer
|
// and finally return the new renderer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user