summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-09-09 12:30:04 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-09-09 15:00:57 +0200
commitcc6fc6577940df89c57db08743b181291c2a4b43 (patch)
tree01625917892ebdb6bcf7addc7cf75352e09e4d71
parentebe06a038c2773d8ca99ac8bc8a9451b2509e0e1 (diff)
spline-widget: emit vtable in a single unit
-rw-r--r--spline-widget/spline.cpp4
-rw-r--r--spline-widget/spline.hpp1
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;
};