summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlexander Khosrowshahi <alexk@vector35.com>2025-06-30 15:05:08 -0400
committerAlexander Khosrowshahi <alexk@vector35.com>2025-07-03 13:47:57 -0400
commitdd5009bd17bc0d814c06d3a6962929084878f350 (patch)
tree1eb5b05b9c550e8f4a0d833ab741a794f236df98 /examples
parent2be7b54b7bc7a0e46408b228ee55bbb4fe342e6c (diff)
Change 'Path' to 'Path on disk' in triage summary
Diffstat (limited to 'examples')
-rw-r--r--examples/triage/fileinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/triage/fileinfo.cpp b/examples/triage/fileinfo.cpp
index b521b892..5a9ba743 100644
--- a/examples/triage/fileinfo.cpp
+++ b/examples/triage/fileinfo.cpp
@@ -75,7 +75,7 @@ FileInfoWidget::FileInfoWidget(QWidget* parent, BinaryViewRef bv)
const auto file = bv->GetFile();
const auto filePath = file->GetOriginalFilename();
- this->addCopyableField("Path: ", filePath.c_str());
+ this->addCopyableField("Path on disk: ", filePath.c_str());
// If triage view is opened from a project, show both actual filepath and path relative to project
if (const auto fileProjectRef = file->GetProjectFile())