diff options
| author | Jabiertxof <jtx@jtx> | 2017-05-27 10:23:25 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2017-05-27 10:23:25 +0000 |
| commit | 2c160c193b9767df8448ec3d018c3d6225a4ec63 (patch) | |
| tree | ad8a0ab2870cbf5cf5e6a40041678e428785c948 /src/live_effects/parameter/bool.h | |
| parent | Order LPE parameters (diff) | |
| download | inkscape-2c160c193b9767df8448ec3d018c3d6225a4ec63.tar.gz inkscape-2c160c193b9767df8448ec3d018c3d6225a4ec63.zip | |
Change bad named vars
(bzr r15703.1.1)
Diffstat (limited to 'src/live_effects/parameter/bool.h')
| -rw-r--r-- | src/live_effects/parameter/bool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/parameter/bool.h b/src/live_effects/parameter/bool.h index 39f328eaa..86681e764 100644 --- a/src/live_effects/parameter/bool.h +++ b/src/live_effects/parameter/bool.h @@ -26,7 +26,7 @@ public: Inkscape::UI::Widget::Registry* wr, Effect* effect, bool default_value = false, - bool no_widget = false); + bool widget_is_visible = true); virtual ~BoolParam(); virtual Gtk::Widget * param_newWidget(); @@ -40,6 +40,7 @@ public: virtual void param_update_default(const gchar * default_value); bool get_value() const { return value; }; inline operator bool() const { return value; }; + bool widget_is_visible; private: BoolParam(const BoolParam&); @@ -47,7 +48,6 @@ private: bool value; bool defvalue; - bool hide_widget; }; |
