forked from qt-creator/qt-creator
Fix compilation.
There is no + operator that takes a QByteArray and a QString (or vice versa). Change-Id: I8734923cbbb0360bc20f9775d57801803782716f Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -391,7 +391,7 @@ void QmlInspectorAgent::onValueChanged(int debugId, const QByteArray &propertyNa
|
||||
const QVariant &value)
|
||||
{
|
||||
const QString iname = m_debugIdToIname.value(debugId) +
|
||||
".[properties]." + propertyName;
|
||||
".[properties]." + QString::fromLatin1(propertyName);
|
||||
WatchHandler *watchHandler = m_qmlEngine->watchHandler();
|
||||
qCDebug(qmlInspectorLog)
|
||||
<< __FUNCTION__ << '(' << debugId << ')' << iname
|
||||
|
||||
Reference in New Issue
Block a user