Skip to content

Commit

Permalink
Update indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont committed Dec 18, 2015
1 parent e2d1320 commit efaae1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/server/qgsserverprojectparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,9 @@ void QgsServerProjectParser::serviceCapabilities( QDomElement& parentElement, QD
wmsKeywordElem.appendChild( keywordElem );
}
}
} else if ( !keywordListElem.isNull() && !keywordListElem.text().isEmpty() ) {
}
else if ( !keywordListElem.isNull() && !keywordListElem.text().isEmpty() )
{
QDomNodeList keywordNodeList = keywordListElem.elementsByTagName( "value" );
QStringList keywordList;
for ( int i = 0; i < keywordNodeList.size(); ++i )
Expand Down

0 comments on commit efaae1f

Please sign in to comment.