Skip to content

Commit a3ae88e

Browse files
jnmoalm-kuhn
authored andcommittedSep 21, 2015
fix compilation issue in qgsexpression.cpp. QString::toHtmlEscaped is not static.
1 parent 22313dc commit a3ae88e

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
@@ -3472,7 +3472,7 @@ QString QgsExpression::helptext( QString name )
34723472
#if QT_VERSION < 0x050000
34733473
name = Qt::escape( name );
34743474
#else
3475-
name = QString::toHtmlEscaped( name );
3475+
name = name.toHtmlEscaped();
34763476
#endif
34773477

34783478
QString helpContents( QString( "<h3>%1</h3>\n<div class=\"description\"><p>%2</p></div>" )

0 commit comments

Comments
 (0)
Please sign in to comment.