aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/qmljs/qmljs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmljs/qmljs.cpp b/tools/qmljs/qmljs.cpp
index 2250a501e7..05f7d6f340 100644
--- a/tools/qmljs/qmljs.cpp
+++ b/tools/qmljs/qmljs.cpp
@@ -62,7 +62,7 @@ static void showException(QV4::ExecutionContext *ctx, const QV4::Value &exceptio
}
for (const QV4::StackFrame &frame : trace) {
- std::cerr << " at " << qPrintable(frame.function) << " (" << qPrintable(frame.source);
+ std::cerr << " at " << qPrintable(frame.function()) << " (" << qPrintable(frame.source());
if (frame.line >= 0)
std::cerr << ':' << frame.line;
std::cerr << ')' << std::endl;