Skip to content

Commit 351af0b

Browse files
committedFeb 3, 2016
indent, 250fcb followup
1 parent 46ed98a commit 351af0b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎src/plugins/grass/qgsgrassmoduleparam.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ QgsGrassModuleMultiParam::QgsGrassModuleMultiParam( QgsGrassModule *module, QStr
241241
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
242242
bool direct, QWidget * parent )
243243
: QgsGrassModuleGroupBoxItem( module, key, qdesc, gdesc, gnode, direct, parent )
244-
, mLayout(0)
245-
, mParamsLayout(0)
246-
, mButtonsLayout(0)
244+
, mLayout( 0 )
245+
, mParamsLayout( 0 )
246+
, mButtonsLayout( 0 )
247247
{
248248
adjustTitle();
249249
setToolTip( mToolTip );
@@ -1183,7 +1183,7 @@ void QgsGrassModuleVectorField::updateFields()
11831183
{
11841184
QgsDebugMsg( "entered" );
11851185

1186-
Q_FOREACH( QComboBox *comboBox, mComboBoxList )
1186+
Q_FOREACH ( QComboBox *comboBox, mComboBoxList )
11871187
{
11881188
QString current = comboBox->currentText();
11891189
comboBox->clear();
@@ -1216,17 +1216,17 @@ QStringList QgsGrassModuleVectorField::options()
12161216
QStringList list;
12171217

12181218
QStringList valueList;
1219-
Q_FOREACH( QComboBox *comboBox, mComboBoxList )
1219+
Q_FOREACH ( QComboBox *comboBox, mComboBoxList )
12201220
{
1221-
if ( !comboBox->currentText().isEmpty() )
1221+
if ( !comboBox->currentText().isEmpty() )
12221222
{
12231223
valueList << comboBox->currentText();
12241224
}
12251225
}
12261226

12271227
if ( !valueList.isEmpty() )
12281228
{
1229-
QString opt = mKey + "=" + valueList.join(",");
1229+
QString opt = mKey + "=" + valueList.join( "," );
12301230
list << opt;
12311231
}
12321232

0 commit comments

Comments
 (0)