summaryrefslogtreecommitdiff
path: root/ui/viewframe.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2021-02-18 17:01:11 -0500
committerBrian Potchik <brian@vector35.com>2021-02-18 17:01:11 -0500
commit98cd461ccb286609e248aa5260cfaeb5e81d7387 (patch)
tree81bc476460d53ceef52cbe64b2c693e6fe989428 /ui/viewframe.h
parentab38220c60d59f7bc164c76bde72201746a53da9 (diff)
Improve write lock status state visibility.
Diffstat (limited to 'ui/viewframe.h')
-rw-r--r--ui/viewframe.h6
1 files changed, 3 insertions, 3 deletions
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;