MCPcopy Create free account
hub / github.com/KDAB/GammaRay / qmlErrorToString

Function qmlErrorToString

plugins/qmlsupport/qmlsupport.cpp:82–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82static QString qmlErrorToString(const QQmlError &error)
83{
84 return QStringLiteral("%1:%2:%3: %4")
85 .arg(error.url().toString())
86 .arg(error.line())
87 .arg(error.column())
88 .arg(error.description());
89}
90
91static QString qmlListPropertyToString(const QVariant &value, bool *ok)
92{

Callers

nothing calls this directly

Calls 4

lineMethod · 0.80
columnMethod · 0.80
urlMethod · 0.45
descriptionMethod · 0.45

Tested by

no test coverage detected