Skip to content

Commit

Permalink
fix compilation issue in qgsexpression.cpp. QString::toHtmlEscaped is…
Browse files Browse the repository at this point in the history
… not static.
  • Loading branch information
jnmoal authored and m-kuhn committed Sep 21, 2015
1 parent 22313dc commit a3ae88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -3472,7 +3472,7 @@ QString QgsExpression::helptext( QString name )
#if QT_VERSION < 0x050000
name = Qt::escape( name );
#else
name = QString::toHtmlEscaped( name );
name = name.toHtmlEscaped();
#endif

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

0 comments on commit a3ae88e

Please sign in to comment.