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/live_effects/parameter/bool.h | |
| parent | NodeToolbar: GtkAction migration (diff) | |
| download | inkscape-ecb291432621a803830a362a1508a057706321db.tar.gz inkscape-ecb291432621a803830a362a1508a057706321db.zip | |
PencilToolbar: GtkAction migration
Diffstat (limited to 'src/live_effects/parameter/bool.h')
| -rw-r--r-- | src/live_effects/parameter/bool.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/live_effects/parameter/bool.h b/src/live_effects/parameter/bool.h index 557511979..c66626cbd 100644 --- a/src/live_effects/parameter/bool.h +++ b/src/live_effects/parameter/bool.h @@ -28,6 +28,8 @@ public: Effect* effect, bool default_value = false); ~BoolParam() override; + BoolParam(const BoolParam&) = delete; + BoolParam& operator=(const BoolParam&) = delete; Gtk::Widget * param_newWidget() override; @@ -43,9 +45,6 @@ public: inline operator bool() const { return value; }; private: - BoolParam(const BoolParam&) = delete; - BoolParam& operator=(const BoolParam&) = delete; - bool value; bool defvalue; }; |
