From fbe3e5b54592300f9e3911d39f5ba7d41bc3ec8d Mon Sep 17 00:00:00 2001 From: Nav Date: Tue, 25 Apr 2023 20:26:52 +0100 Subject: [PATCH] Should have been included in 5b17ddccb55aea76d4c1407a7a0ab3245f3b8b23 --- .../SnapshotManager/SnapshotViewer/SnapshotViewer.cpp | 2 +- .../SnapshotManager/SnapshotViewer/SnapshotViewer.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.cpp index 9da75448..7ce6c081 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.cpp @@ -75,7 +75,7 @@ namespace Bloom::Widgets this->detailsContainer = this->container->findChild("details-container"); this->nameInput = this->detailsContainer->findChild("name-input"); - this->descriptionInput = this->detailsContainer->findChild("description-input"); + this->descriptionInput = this->detailsContainer->findChild("description-input"); auto* detailsContainerLayout = this->detailsContainer->findChild(); detailsContainerLayout->setContentsMargins(0, 0, 0, 0); diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.hpp index 67b16f7b..3247e4f3 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/SnapshotManager/SnapshotViewer/SnapshotViewer.hpp @@ -4,10 +4,10 @@ #include #include #include -#include #include #include "src/Insight/UserInterfaces/InsightWindow/Widgets/TextInput.hpp" +#include "src/Insight/UserInterfaces/InsightWindow/Widgets/PlainTextEdit.hpp" #include "src/Insight/UserInterfaces/InsightWindow/Widgets/PushButton.hpp" #include "src/Insight/UserInterfaces/InsightWindow/Widgets/ListView/ListView.hpp" #include "src/Insight/UserInterfaces/InsightWindow/Widgets/TaskProgressIndicator/TaskProgressIndicator.hpp" @@ -44,7 +44,7 @@ namespace Bloom::Widgets QWidget* detailsContainer = nullptr; TextInput* nameInput = nullptr; - QPlainTextEdit* descriptionInput = nullptr; + PlainTextEdit* descriptionInput = nullptr; ListView* memoryRegionListView = nullptr; ListScene* memoryRegionListScene = nullptr;