summaryrefslogtreecommitdiffstats
path: root/src/display
diff options
context:
space:
mode:
authorAlexander Valavanis <valavanisalex@gmail.com>2019-02-05 13:26:44 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2019-02-05 13:26:44 +0000
commitecb291432621a803830a362a1508a057706321db (patch)
tree531377a903b053827b4874fa2d832a6d26723efa /src/display
parentNodeToolbar: GtkAction migration (diff)
downloadinkscape-ecb291432621a803830a362a1508a057706321db.tar.gz
inkscape-ecb291432621a803830a362a1508a057706321db.zip
PencilToolbar: GtkAction migration
Diffstat (limited to 'src/display')
-rw-r--r--src/display/curve.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/display/curve.h b/src/display/curve.h
index e9c58e610..c6ddb4cb8 100644
--- a/src/display/curve.h
+++ b/src/display/curve.h
@@ -32,6 +32,10 @@ public:
virtual ~SPCurve();
+ // Don't implement these:
+ SPCurve(const SPCurve&) = delete;
+ SPCurve& operator=(const SPCurve&) = delete;
+
void set_pathvector(Geom::PathVector const & new_pathv);
Geom::PathVector const & get_pathvector() const;
@@ -86,11 +90,6 @@ protected:
size_t _refcount;
Geom::PathVector _pathv;
-
-private:
- // Don't implement these:
- SPCurve(const SPCurve&) = delete;
- SPCurve& operator=(const SPCurve&) = delete;
};
#endif // !SEEN_DISPLAY_CURVE_H