Skip to content
Snippets Groups Projects
Commit 5f6ad79a authored by Leena Miettinen's avatar Leena Miettinen
Browse files

UI text: use single quotes to emphasize variables


Change-Id: I7d5ac28e27d942b7979aaf46cd464ba7989d5d02
Reviewed-by: default avatarAurindam Jana <aurindam.jana@nokia.com>
parent 2ade54ff
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,7 @@ void QScriptDebuggerClient::messageReceived(const QByteArray &data)
QString msg = stackFrames.isEmpty()
? tr("<p>An uncaught exception occurred:</p><p>%1</p>")
.arg(Qt::escape(error))
: tr("<p>An uncaught exception occurred in <i>%1</i>:</p><p>%2</p>")
: tr("<p>An uncaught exception occurred in '%1':</p><p>%2</p>")
.arg(QLatin1String(stackFrames.value(0).fileUrl), Qt::escape(error));
showMessageBox(QMessageBox::Information, tr("Uncaught Exception"), msg);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment