Skip to content

Commit

Permalink
fix for-clause
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Jan 7, 2019
1 parent 148591f commit 74545e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/qgsvaluerelationwidgetwrapper.cpp
Expand Up @@ -74,7 +74,7 @@ QVariant QgsValueRelationWidgetWrapper::value() const
{
QVariantList vl;
//store as QVariantList because it's json
for ( const QString &s, qgis::as_const( selection ) )
for ( const QString &s : qgis::as_const( selection ) )
{
vl << s;
}
Expand Down

0 comments on commit 74545e8

Please sign in to comment.