From 673e90b9de0e1ae0351729bb9ee44b728b0f0e9c Mon Sep 17 00:00:00 2001 From: David Schulz Date: Wed, 27 Oct 2021 08:23:43 +0200 Subject: [PATCH] Debugger: show destribution debug package message for remote frames Change-Id: Ie9f7b553357c0f041d266874d284504159708cd9 Reviewed-by: hjk --- src/plugins/debugger/stackframe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp index 1eea267f255..9787b7c7c4c 100644 --- a/src/plugins/debugger/stackframe.cpp +++ b/src/plugins/debugger/stackframe.cpp @@ -152,7 +152,7 @@ QString StackFrame::toToolTip() const "frame. However, matching sources have not been found."); showDistributionNote = true; } - if (!HostOsInfo::isWindowsHost() && showDistributionNote) { + if (file.osType() != OsTypeWindows && showDistributionNote) { str << ' ' << tr("Note that most distributions ship debug information " "in separate packages."); }