diff options
| author | Brian Potchik <brian@vector35.com> | 2025-01-13 11:26:18 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-01-13 11:26:18 -0500 |
| commit | 768bf0dd364239786b9594f60ced85b331ebda5f (patch) | |
| tree | 81e168b40b1b10d9a9f4cc4228a4b2f643260da4 /ui/notificationsdispatcher.h | |
| parent | e95dc2c36a40814703109eafbf7b0112da084504 (diff) | |
Move all FeatureMap processing to the background.
Diffstat (limited to 'ui/notificationsdispatcher.h')
| -rw-r--r-- | ui/notificationsdispatcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/notificationsdispatcher.h b/ui/notificationsdispatcher.h index f3b3a7bd..05073525 100644 --- a/ui/notificationsdispatcher.h +++ b/ui/notificationsdispatcher.h @@ -165,8 +165,8 @@ public: void addSource(NotificationType source) { m_source = static_cast<NotificationType>(static_cast<uint64_t>(m_source) | static_cast<uint64_t>(source)); } NotificationType getSource() const { return m_source; } NotificationTypes getSources() const { return static_cast<NotificationTypes>(m_source); } - bool isObjectRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved)); } - bool isRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::SymbolRemoved)); } + bool isObjectRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::StringRemoved)); } + bool isRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::SymbolRemoved | NotificationType::StringRemoved)); } }; |
