code style fix (astyle)

This commit is contained in:
Piers Titus van der Torren 2016-04-06 16:17:54 +02:00 committed by Nyall Dawson
parent 47676d4bc5
commit f27507d282

View File

@ -201,7 +201,7 @@ void QgsSingleBandPseudoColorRendererWidget::autoLabel()
if ( discrete )
{
if ( i == 0)
if ( i == 0 )
{
label = "< " + myCurrentItem->text( 0 ) + unit;
}
@ -241,7 +241,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels()
if ( discrete )
{
if ( i == 0)
if ( i == 0 )
{
label = "< " + myCurrentItem->text( 0 );
}
@ -265,7 +265,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels()
suffixes.removeDuplicates();
int max = 0;
QString unit;
for( int i = 0; i < suffixes.count(); ++i )
for ( int i = 0; i < suffixes.count(); ++i )
{
int n = allSuffixes.count( suffixes[i] );
if ( n > max )
@ -277,7 +277,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels()
// Set this suffix as unit if at least used twice
if ( max >= 2 )
{
mUnitLineEdit->setText(unit);
mUnitLineEdit->setText( unit );
}
autoLabel();
}