Use generic XCB::GetRootWindow instead of QPlatformNativeInterface-based GetRootWindowFromQt
This commit is contained in:
parent
9c7fe32830
commit
692fd7a3a2
1 changed files with 3 additions and 3 deletions
|
|
@ -132,7 +132,7 @@ std::optional<uint> XCBCurrentWorkspace() {
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto root = base::Platform::XCB::GetRootWindowFromQt();
|
const auto root = base::Platform::XCB::GetRootWindow(connection);
|
||||||
if (!root.has_value()) {
|
if (!root.has_value()) {
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
@ -220,7 +220,7 @@ std::optional<bool> XCBIsOverlapped(
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto root = base::Platform::XCB::GetRootWindowFromQt();
|
const auto root = base::Platform::XCB::GetRootWindow(connection);
|
||||||
if (!root.has_value()) {
|
if (!root.has_value()) {
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
@ -345,7 +345,7 @@ bool ShowXCBWindowMenu(QWindow *window) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto root = base::Platform::XCB::GetRootWindowFromQt();
|
const auto root = base::Platform::XCB::GetRootWindow(connection);
|
||||||
if (!root.has_value()) {
|
if (!root.has_value()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue