From 80cc29ad65cfce1d58507f65659999d65ea75fbd Mon Sep 17 00:00:00 2001 From: Nav Date: Fri, 24 Dec 2021 14:35:20 +0000 Subject: [PATCH] Tidying --- .../MemoryRegionManager/MemoryRegionManagerWindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/MemoryRegionManagerWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/MemoryRegionManagerWindow.cpp index 13c8c9f8..9b2e641d 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/MemoryRegionManagerWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/MemoryRegionManagerWindow.cpp @@ -306,7 +306,7 @@ void MemoryRegionManagerWindow::applyChanges() { if (!validationFailures.empty()) { auto* errorDialogue = new ErrorDialogue( - "Invalid memory region", + "Invalid Memory Region", "Invalid memory region \"" + focusedRegionItem->getRegionNameInputValue() + "\"" + "

- " + validationFailures.join("
- "), this @@ -319,7 +319,7 @@ void MemoryRegionManagerWindow::applyChanges() { for (const auto& processedFocusedRegion : processedFocusedMemoryRegions) { if (processedFocusedRegion.intersectsWith(focusedRegion)) { auto* errorDialogue = new ErrorDialogue( - "Intersection region found", + "Intersecting Region Found", "Region \"" + focusedRegionItem->getRegionNameInputValue() + "\" intersects with region \"" + processedFocusedRegion.name + "\". " + "Regions cannot intersect. Please review the relevant address ranges.", @@ -338,7 +338,7 @@ void MemoryRegionManagerWindow::applyChanges() { if (!validationFailures.empty()) { auto* errorDialogue = new ErrorDialogue( - "Invalid memory region", + "Invalid Memory Region", "Invalid memory region \"" + excludedRegionItem->getRegionNameInputValue() + "\"" + "

- " + validationFailures.join("
- "), this @@ -351,7 +351,7 @@ void MemoryRegionManagerWindow::applyChanges() { for (const auto& processedFocusedRegion : processedFocusedMemoryRegions) { if (processedFocusedRegion.intersectsWith(excludedRegion)) { auto* errorDialogue = new ErrorDialogue( - "Intersecting region found", + "Intersecting Region Found", "Region \"" + excludedRegionItem->getRegionNameInputValue() + "\" intersects with region \"" + processedFocusedRegion.name + "\". " + "Regions cannot intersect. Please review the relevant address ranges.", @@ -365,7 +365,7 @@ void MemoryRegionManagerWindow::applyChanges() { for (const auto& processedExcludedRegion : processedExcludedMemoryRegions) { if (processedExcludedRegion.intersectsWith(excludedRegion)) { auto* errorDialogue = new ErrorDialogue( - "Intersecting region found", + "Intersecting Region Found", "Region \"" + excludedRegionItem->getRegionNameInputValue() + "\" intersects with region \"" + processedExcludedRegion.name + "\". " + "Regions cannot intersect. Please review the relevant address ranges.",