Skip to content

Commit 82eeeac

Browse files
committedOct 3, 2016
Fix invalid debugging noise
1 parent dc48195 commit 82eeeac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/symbology-ng/qgscategorizedsymbolrenderer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ QgsCategorizedSymbolRenderer::QgsCategorizedSymbolRenderer( const QString& attrN
161161
//trigger a detachment and copy of mCategories BUT that same method CAN be used to modify a symbol in place
162162
Q_FOREACH ( const QgsRendererCategory& cat, categories )
163163
{
164-
if ( cat.symbol() )
164+
if ( !cat.symbol() )
165165
{
166166
QgsDebugMsg( "invalid symbol in a category! ignoring..." );
167167
}

0 commit comments

Comments
 (0)
Please sign in to comment.