Skip to content

Commit 74545e8

Browse files
committed
fix for-clause
1 parent 148591f commit 74545e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/editorwidgets/qgsvaluerelationwidgetwrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ QVariant QgsValueRelationWidgetWrapper::value() const
7474
{
7575
QVariantList vl;
7676
//store as QVariantList because it's json
77-
for ( const QString &s, qgis::as_const( selection ) )
77+
for ( const QString &s : qgis::as_const( selection ) )
7878
{
7979
vl << s;
8080
}

0 commit comments

Comments
 (0)