mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-06 00:05:16 -04:00
fix warning
git-svn-id: http://svn.osgeo.org/qgis/trunk@14854 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
9d15ed8238
commit
8af3dd1273
@ -237,8 +237,12 @@ QgsSymbolLayerV2* QgsMarkerLineSymbolLayerV2::create( const QgsStringMap& props
|
|||||||
|
|
||||||
QgsMarkerLineSymbolLayerV2* x = new QgsMarkerLineSymbolLayerV2( rotate, interval );
|
QgsMarkerLineSymbolLayerV2* x = new QgsMarkerLineSymbolLayerV2( rotate, interval );
|
||||||
if ( props.contains( "offset" ) )
|
if ( props.contains( "offset" ) )
|
||||||
|
{
|
||||||
x->setOffset( props["offset"].toDouble() );
|
x->setOffset( props["offset"].toDouble() );
|
||||||
|
}
|
||||||
|
|
||||||
if ( props.contains( "placement" ) )
|
if ( props.contains( "placement" ) )
|
||||||
|
{
|
||||||
if ( props["placement"] == "vertex" )
|
if ( props["placement"] == "vertex" )
|
||||||
x->setPlacement( Vertex );
|
x->setPlacement( Vertex );
|
||||||
else if ( props["placement"] == "lastvertex" )
|
else if ( props["placement"] == "lastvertex" )
|
||||||
@ -249,6 +253,7 @@ QgsSymbolLayerV2* QgsMarkerLineSymbolLayerV2::create( const QgsStringMap& props
|
|||||||
x->setPlacement( CentralPoint );
|
x->setPlacement( CentralPoint );
|
||||||
else
|
else
|
||||||
x->setPlacement( Interval );
|
x->setPlacement( Interval );
|
||||||
|
}
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user