Closed stefonarch closed 3 months ago
lxqtwmbackend_kwinwayland.cpp:771:32: error: ‘qGuiApp’ was not declared in this scope 771 | auto *waylandApplication = qGuiApp->nativeInterface<QNativeInterface::QWaylandApplication>();
Added #include <QGuiApplication>
to panel/backends/wayland/kwin_wayland/lxqtwmbackend_kwinwayland.cpp
and problem solved. The question is why it isn't needed on arch...
auto *waylandApplication = qGuiApp->nativeInterface<QNativeInterface::QWaylandApplication>();
if(!waylandApplication)
return 0;
We can add this in one of the next PRs, no need for an extra one IMO.
The question is why it isn't needed on arch
Different versions of Qt6, most probably.
In master I get now
The previous branch from @marcusbritanicus
wlroots_backend_patched
compiled fine.@gfgit Any idea?