Skip to content

Commit

Permalink
fix two more warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 1, 2013
1 parent 52558e0 commit 69ce13a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgslinesymbollayerv2.cpp
Expand Up @@ -877,7 +877,7 @@ void QgsMarkerLineSymbolLayerV2::renderPolylineInterval( const QPolygonF& points
{
interval = mIntervalExpression->evaluate( const_cast<QgsFeature*>( context.feature() ) ).toDouble();
}
if ( !interval > 0 )
if ( interval <= 0 )
{
interval = 0.1;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsrasterlayerpropertiesbase.ui
Expand Up @@ -447,7 +447,7 @@
</widget>
</item>
<item row="1" column="1" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout_11">
<layout class="QHBoxLayout" name="horizontalLayout_12">
<item>
<widget class="QgsColorButton" name="btnColorizeColor">
<property name="maximumSize">
Expand Down

0 comments on commit 69ce13a

Please sign in to comment.