mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
log the error string, not the QDeclarativeError pointer in QDeclarativeScriptActionPrivate::execute()
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
c5d9fd14b7
commit
2541c918c8
1 changed files with 1 additions and 1 deletions
|
@ -807,7 +807,7 @@ void QDeclarativeScriptActionPrivate::execute()
|
|||
expr.setSourceLocation(ddata->outerContext->url.toString(), ddata->lineNumber);
|
||||
expr.evaluate();
|
||||
if (expr.hasError())
|
||||
qmlInfo(q) << expr.error();
|
||||
qmlInfo(q) << expr.error().toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue