Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move ok handling where it belongs to
  • Loading branch information
m-kuhn committed Dec 19, 2018
1 parent d3cdf28 commit 33cd5e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/qgssqliteexpressioncompiler.cpp
Expand Up @@ -57,7 +57,8 @@ QString QgsSQLiteExpressionCompiler::quotedIdentifier( const QString &identifier

QString QgsSQLiteExpressionCompiler::quotedValue( const QVariant &value, bool &ok )
{
return QgsSqliteUtils::quotedValue( value, ok );
ok = true;
return QgsSqliteUtils::quotedValue( value );
}

QString QgsSQLiteExpressionCompiler::sqlFunctionFromFunctionName( const QString &fnName ) const
Expand Down

0 comments on commit 33cd5e8

Please sign in to comment.