Fix unused variable warning

This commit is contained in:
Ilya Fedin 2022-09-18 17:19:02 +04:00 committed by John Preston
parent efdc82c823
commit 367859c684

View file

@ -45,6 +45,7 @@ void ActivateWindowDelayed(not_null<QWidget*> widget) {
} else if (std::exchange(Window, widget.get())) { } else if (std::exchange(Window, widget.get())) {
return; return;
} }
#ifndef DESKTOP_APP_DISABLE_X11_INTEGRATION
const auto focusAncestor = [&] { const auto focusAncestor = [&] {
const auto focusWidget = QApplication::focusWidget(); const auto focusWidget = QApplication::focusWidget();
if (!focusWidget || !widget->window()) { if (!focusWidget || !widget->window()) {
@ -52,6 +53,7 @@ void ActivateWindowDelayed(not_null<QWidget*> widget) {
} }
return widget->window()->isAncestorOf(focusWidget); return widget->window()->isAncestorOf(focusWidget);
}(); }();
#endif // !DESKTOP_APP_DISABLE_X11_INTEGRATION
crl::on_main(Window, [=] { crl::on_main(Window, [=] {
const auto widget = base::take(Window); const auto widget = base::take(Window);
if (!widget) { if (!widget) {