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:
@@ -631,7 +631,7 @@ QString WatchItem::internalName() const
|
||||
{
|
||||
if (arrayIndex >= 0) {
|
||||
if (const WatchItem *p = parentItem())
|
||||
return p->iname + '.' + QByteArray::number(arrayIndex);
|
||||
return p->iname + '.' + QString::number(arrayIndex);
|
||||
}
|
||||
return iname;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user