From 98cd461ccb286609e248aa5260cfaeb5e81d7387 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Thu, 18 Feb 2021 17:01:11 -0500 Subject: Improve write lock status state visibility. --- ui/viewframe.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ui/viewframe.h') diff --git a/ui/viewframe.h b/ui/viewframe.h index 162dac11..466051d3 100644 --- a/ui/viewframe.h +++ b/ui/viewframe.h @@ -36,7 +36,7 @@ struct SelectionInfoForXref FunctionRef func; ArchitectureRef arch; - bool operator== (const SelectionInfoForXref& other) const + bool operator== (const SelectionInfoForXref& other) const { if (addrValid && other.addrValid) return (start == other.start) && (end == other.end) && @@ -67,7 +67,7 @@ public: class AssembleDialog; -class ClickableLabel; +class ClickableStateLabel; class CompileDialog; class DockHandler; class FeatureMap; @@ -265,7 +265,7 @@ private: FileContext* m_context; bool m_fileContentsLock = true; // file contents protection from accidental modification in the UI - ClickableLabel* m_fileContentsLockStatus; + ClickableStateLabel* m_fileContentsLockStatus; BinaryViewRef m_data; DockHandler* m_docks; QWidget* m_view; -- cgit v1.3.1