aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_qt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jalv_qt.cpp')
-rw-r--r--src/jalv_qt.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jalv_qt.cpp b/src/jalv_qt.cpp
index 24425d6..b0381e7 100644
--- a/src/jalv_qt.cpp
+++ b/src/jalv_qt.cpp
@@ -77,6 +77,12 @@ public:
explicit FlowLayout(int margin, int hSpacing, int vSpacing);
+ FlowLayout(const FlowLayout&) = delete;
+ FlowLayout& operator=(const FlowLayout&) = delete;
+
+ FlowLayout(FlowLayout&&) = delete;
+ FlowLayout&& operator=(FlowLayout&&) = delete;
+
~FlowLayout() override;
void addItem(QLayoutItem* item) override;