Bump clazy version
This commit is contained in:
parent
f6788ecf1f
commit
7db1711b09
8 changed files with 18 additions and 17 deletions
|
|
@ -203,7 +203,8 @@ NhekoFixupPaletteEventFilter::eventFilter(QObject *obj, QEvent *event)
|
|||
// reason?!?
|
||||
if (event->type() == QEvent::ChildAdded &&
|
||||
obj->metaObject()->className() == QStringLiteral("QQuickRootItem")) {
|
||||
for (const auto window : QGuiApplication::topLevelWindows()) {
|
||||
auto windows = QGuiApplication::topLevelWindows();
|
||||
for (const auto window : std::as_const(windows)) {
|
||||
if (window->property("posted").isValid())
|
||||
continue;
|
||||
QGuiApplication::postEvent(window, new QEvent(QEvent::ApplicationPaletteChange));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue