App: Fix XML namespace issue in Branding

This commit is contained in:
Chris Hennes
2025-07-28 09:25:26 -05:00
parent ae5564d50c
commit 8dc6397fc4

View File

@@ -104,7 +104,7 @@ Branding::XmlConfig Branding::getUserDefines() const
bool Branding::evaluateXML(QIODevice* device, QDomDocument& xmlDocument)
{
#if QT_VERSION >= QT_VERSION_CHECK(6,5,0)
if (!xmlDocument.setContent(device)) {
if (!xmlDocument.setContent(device, QDomDocument::ParseOption::UseNamespaceProcessing)) {
return false;
}
#else