diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-09-04 18:53:01 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-09-04 18:53:01 +0000 |
| commit | 7b51b20d1cccdd85e7ad54100fbae1dc755185af (patch) | |
| tree | 68ccc4af1fbae73c6ebd3740f08d8ea8e20df1c4 /src/live_effects/parameter/bool.cpp | |
| parent | Updated to match API changes in style.h (diff) | |
| download | inkscape-7b51b20d1cccdd85e7ad54100fbae1dc755185af.tar.gz inkscape-7b51b20d1cccdd85e7ad54100fbae1dc755185af.zip | |
LPE: add Paste LPE verb + menu item. add scale ratios to curve stitch and path-along-path. remove trailing space in verbs.cpp. Fix initialization of BoolParam
(bzr r3675)
Diffstat (limited to 'src/live_effects/parameter/bool.cpp')
| -rw-r--r-- | src/live_effects/parameter/bool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/parameter/bool.cpp b/src/live_effects/parameter/bool.cpp index af3449dff..f0d409955 100644 --- a/src/live_effects/parameter/bool.cpp +++ b/src/live_effects/parameter/bool.cpp @@ -26,7 +26,7 @@ namespace LivePathEffect { BoolParam::BoolParam( const Glib::ustring& label, const Glib::ustring& tip,
const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr,
Effect* effect, bool default_value )
- : Parameter(label, tip, key, wr, effect), defvalue(default_value)
+ : Parameter(label, tip, key, wr, effect), defvalue(default_value), value(default_value)
{
checkwdg = NULL;
}
|
