summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/parameter/array.h')
-rw-r--r--src/live_effects/parameter/array.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h
index e5f230111..89c344594 100644
--- a/src/live_effects/parameter/array.h
+++ b/src/live_effects/parameter/array.h
@@ -85,10 +85,7 @@ public:
g_free(str);
}
-private:
- ArrayParam(const ArrayParam&);
- ArrayParam& operator=(const ArrayParam&);
-
+protected:
std::vector<StorageType> _vector;
size_t _default_size;
@@ -103,6 +100,10 @@ private:
}
StorageType readsvg(const gchar * str);
+
+private:
+ ArrayParam(const ArrayParam&);
+ ArrayParam& operator=(const ArrayParam&);
};