diff options
author | Kai Uwe Broulik <[email protected]> | 2024-11-19 09:39:25 +0100 |
---|---|---|
committer | Kai Uwe Broulik <[email protected]> | 2024-11-19 09:54:39 +0100 |
commit | fbefe0eea3bfd36ef46ff4b1e30ab7c4de824322 (patch) | |
tree | 7661747a393cb502f0ba574590c9035217436a45 | |
parent | bd2371fc59c4a55c53b9435ef296748437d5e015 (diff) |
client: Soften wording on fake screen message
Don't admit that our software might be crashy.
Pick-to: 6.8
Change-Id: I8b216478e2f214af64ae97ec149ebda751a8894f
Reviewed-by: David Redondo <[email protected]>
-rw-r--r-- | src/plugins/platforms/wayland/qwaylanddisplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/wayland/qwaylanddisplay.cpp b/src/plugins/platforms/wayland/qwaylanddisplay.cpp index d585c194bd6..105877dcfe7 100644 --- a/src/plugins/platforms/wayland/qwaylanddisplay.cpp +++ b/src/plugins/platforms/wayland/qwaylanddisplay.cpp @@ -410,7 +410,7 @@ void QWaylandDisplay::ensureScreen() if (!mScreens.empty() || mPlaceholderScreen) return; // There are real screens or we already have a fake one - qCInfo(lcQpaWayland) << "Creating a fake screen in order for Qt not to crash"; + qCInfo(lcQpaWayland) << "There are no outputs - creating placeholder screen"; mPlaceholderScreen = new QPlatformPlaceholderScreen(); QWindowSystemInterface::handleScreenAdded(mPlaceholderScreen); |