Skip to content

Commit 2acea9f

Browse files
committedMay 22, 2013
fix #7853
1 parent 9242170 commit 2acea9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ QList<QgsExpression::Function*> QgsExpression::specialColumns()
15811581
QList<Function*> defs;
15821582
for ( QMap<QString, QVariant>::const_iterator it = gmSpecialColumns.begin(); it != gmSpecialColumns.end(); ++it )
15831583
{
1584-
defs << new StaticFunction( it.key(), 0, 0, QObject::tr( "Record" ) );
1584+
defs << new StaticFunction( it.key(), 0, 0, "Record" );
15851585
}
15861586
return defs;
15871587
}

0 commit comments

Comments
 (0)
Please sign in to comment.