Skip to content

Commit ec7117f

Browse files
author
jef
committedOct 13, 2010
fix #3110
git-svn-id: http://svn.osgeo.org/qgis/trunk@14376 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7d9a9cd commit ec7117f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/app/legend/qgslegendlayer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,13 @@ void QgsLegendLayer::vectorLayerSymbology( const QgsVectorLayer* layer, double w
253253
{
254254
img = ( *it )->getLineSymbolAsImage();
255255
}
256-
else if (( *it )->type() == QGis::Line )//polygon
256+
else if (( *it )->type() == QGis::Polygon )
257257
{
258258
img = ( *it )->getPolygonSymbolAsImage();
259259
}
260-
else //must be a layer without geometry then
260+
else
261261
{
262-
262+
// must be a layer without geometry then
263263
}
264264

265265
QString values;

0 commit comments

Comments
 (0)
Please sign in to comment.