Skip to content

Commit f779e0c

Browse files
authored
Merge pull request #1412 from sebojolais/Fix_UBBackgroundManager
Fix missing ; in UBBackgroundManager.cpp
2 parents 24722b8 + 73df558 commit f779e0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gui/UBBackgroundManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ QPixmap UBBackgroundManager::createButtonPixmap(const QDomDocument& bgDoc, bool
303303
#if (QT_VERSION >= QT_VERSION_CHECK(6, 5, 0))
304304
auto result = doc.setContent(&templateFile, QDomDocument::ParseOption::UseNamespaceProcessing);
305305
#else
306-
auto result = doc.setContent(&templateFile, true)
306+
auto result = doc.setContent(&templateFile, true);
307307
#endif
308308
if (!result)
309309
{

0 commit comments

Comments
 (0)