diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
| commit | db053372c3b10afd89e780ab08a63493ccc3d1a7 (patch) | |
| tree | 97d7ad322270c4167de38b7194021d45405fa8d5 /src/document.h | |
| parent | ComboToolItem: Temporary workaround to display pixbuf by default (diff) | |
| download | inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.tar.gz inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.zip | |
clang-tidy recent changes
Diffstat (limited to 'src/document.h')
| -rw-r--r-- | src/document.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/document.h b/src/document.h index e22542f80..e24d2ae12 100644 --- a/src/document.h +++ b/src/document.h @@ -230,9 +230,6 @@ public: void setModifiedSinceSave(bool const modified = true); private: - SPDocument(SPDocument const &) = delete; // no copy - void operator=(SPDocument const &) = delete; // no assign - Persp3D *current_persp3d; /**< Currently 'active' perspective (to which, e.g., newly created boxes are attached) */ Persp3DImpl *current_persp3d_impl; @@ -242,6 +239,9 @@ private: SPDocument *_parent_document; public: + SPDocument(SPDocument const &) = delete; // no copy + void operator=(SPDocument const &) = delete; // no assign + sigc::connection connectReconstructionStart(ReconstructionStart::slot_type slot); sigc::connection connectReconstructionFinish(ReconstructionFinish::slot_type slot); void emitReconstructionStart(); |
