diff --git a/phonon/objectdescription.h b/phonon/objectdescription.h --- a/phonon/objectdescription.h +++ b/phonon/objectdescription.h @@ -267,8 +267,8 @@ { dbg.nospace() << "\n{\n"; dbg.nospace() << " index: " << d.index() << "\n"; - const auto propertyNames = d.propertyNames(); - for (const auto &propertyName : propertyNames) { + const QList propertyNames = d.propertyNames(); + for (const QByteArray &propertyName : propertyNames) { dbg.nospace() << " " << propertyName << ": " << d.property(propertyName).toString() << "\n"; }