From 75f1c298ec500172a6212850365f011a5e967c3a Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Fri, 4 Aug 2017 18:54:12 +0200 Subject: Fix compilation Change-Id: I8f59cff752611cd21c4299589ae5261dc094b4f9 Reviewed-by: Simon Hausmann --- tools/qmljs/qmljs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qmljs/qmljs.cpp b/tools/qmljs/qmljs.cpp index 05f7d6f340..2250a501e7 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; -- cgit v1.2.3