From e9c6351ee07b49b482fadbf1d21e959aaec6acda Mon Sep 17 00:00:00 2001
From: "Joachim Wuttke (h)" <j.wuttke@fz-juelich.de>
Date: Wed, 14 Feb 2024 09:42:46 +0100
Subject: [PATCH] MasksSet fcts -virtual

---
 GUI/Model/Mask/MasksSet.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/GUI/Model/Mask/MasksSet.h b/GUI/Model/Mask/MasksSet.h
index fef22c9cdc1..5dd0c66c71b 100644
--- a/GUI/Model/Mask/MasksSet.h
+++ b/GUI/Model/Mask/MasksSet.h
@@ -29,20 +29,20 @@ class RegionOfInterestItem;
 class MasksSet {
 public:
     MasksSet();
-    ~MasksSet();
+    virtual ~MasksSet();
 
     QVector<MaskItem*> modifiableMaskItems() const;
     QVector<const MaskItem*> maskItems() const;
 
     //! Insert mask at given row.
-    virtual void insertMask(int row, MaskItem* maskItem);
+    void insertMask(int row, MaskItem* maskItem);
 
-    virtual void addMaskItem(MaskItem* maskItem);
+    void addMaskItem(MaskItem* maskItem);
 
     //! Move mask to a given row
-    virtual void moveMask(int from_row, int to_row);
+    void moveMask(int from_row, int to_row);
 
-    virtual void removeMaskAt(int row);
+    void removeMaskAt(int row);
 
     //! Can be nullptr.
     RegionOfInterestItem* regionOfInterestItem() const;
-- 
GitLab