Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #7853
  • Loading branch information
jef-n committed May 22, 2013
1 parent 9242170 commit 2acea9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -1581,7 +1581,7 @@ QList<QgsExpression::Function*> QgsExpression::specialColumns()
QList<Function*> defs;
for ( QMap<QString, QVariant>::const_iterator it = gmSpecialColumns.begin(); it != gmSpecialColumns.end(); ++it )
{
defs << new StaticFunction( it.key(), 0, 0, QObject::tr( "Record" ) );
defs << new StaticFunction( it.key(), 0, 0, "Record" );
}
return defs;
}
Expand Down

0 comments on commit 2acea9f

Please sign in to comment.