diff options
Diffstat (limited to 'spline-widget')
-rw-r--r-- | spline-widget/spline.cpp | 4 | ||||
-rw-r--r-- | spline-widget/spline.hpp | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/spline-widget/spline.cpp b/spline-widget/spline.cpp index 9f0f2dec..2a118e69 100644 --- a/spline-widget/spline.cpp +++ b/spline-widget/spline.cpp @@ -407,4 +407,8 @@ settings::settings(bundle b): points(b, "points", QList<QPointF>()) {} +settings::~settings() +{ +} + } diff --git a/spline-widget/spline.hpp b/spline-widget/spline.hpp index 299c7636..fa13a171 100644 --- a/spline-widget/spline.hpp +++ b/spline-widget/spline.hpp @@ -33,6 +33,7 @@ public: bundle b; value<QList<QPointF>> points; settings(bundle b); + ~settings() override; signals: void recomputed() const; }; |