aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2021-10-27 08:23:43 +0200
committerDavid Schulz <david.schulz@qt.io>2021-10-27 06:29:07 +0000
commit673e90b9de0e1ae0351729bb9ee44b728b0f0e9c (patch)
tree79163024bdc682bacb8987a7c84fb4e0fcff8613
parentbc55c7cc70297c993e47c245d6ca4604670cec64 (diff)
Debugger: show destribution debug package message for remote frames
Change-Id: Ie9f7b553357c0f041d266874d284504159708cd9 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/debugger/stackframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp
index 1eea267f25..9787b7c7c4 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.");
}