forked from qt-creator/qt-creator
Fix build
Change-Id: I2edadc699c7177f3239a686dd01f92e54fa56bf9 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -292,7 +292,7 @@ QString DebuggerSettings::dump()
|
||||
if (!key.isEmpty()) {
|
||||
const int pos = key.view().indexOf('/');
|
||||
if (pos >= 0)
|
||||
key = key.view().mid(pos).toByteArray();
|
||||
key = key.toByteArray().mid(pos);
|
||||
const QString current = aspect->variantValue().toString();
|
||||
const QString default_ = aspect->defaultVariantValue().toString();
|
||||
QString setting = stringFromKey(key) + ": " + current + " (default: " + default_ + ')';
|
||||
|
||||
Reference in New Issue
Block a user