diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-05 13:26:44 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-05 13:26:44 +0000 |
| commit | ecb291432621a803830a362a1508a057706321db (patch) | |
| tree | 531377a903b053827b4874fa2d832a6d26723efa /src/display | |
| parent | NodeToolbar: GtkAction migration (diff) | |
| download | inkscape-ecb291432621a803830a362a1508a057706321db.tar.gz inkscape-ecb291432621a803830a362a1508a057706321db.zip | |
PencilToolbar: GtkAction migration
Diffstat (limited to 'src/display')
| -rw-r--r-- | src/display/curve.h | 9 |
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 |
