diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2011-10-28 19:41:31 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2011-10-28 19:41:31 +0000 |
| commit | efbfc732bbed46c3e615fcd88294a02ee98b7530 (patch) | |
| tree | 13f5812e3c192ba8cce4b174c798bc12ffad4c1a /src/extension/param/parameter.h | |
| parent | fix initialization. add todo comment about gui-hidden not being used. (diff) | |
| download | inkscape-efbfc732bbed46c3e615fcd88294a02ee98b7530.tar.gz inkscape-efbfc732bbed46c3e615fcd88294a02ee98b7530.zip | |
one constructor cannot call the other to initialize the object. See C++faq-lite 10.3
(bzr r10699)
Diffstat (limited to 'src/extension/param/parameter.h')
| -rw-r--r-- | src/extension/param/parameter.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/extension/param/parameter.h b/src/extension/param/parameter.h index e7a7538b7..ad07f5306 100644 --- a/src/extension/param/parameter.h +++ b/src/extension/param/parameter.h @@ -83,9 +83,7 @@ public: Inkscape::Extension::Extension * ext); Parameter (const gchar * name, const gchar * guitext, - Inkscape::Extension::Extension * ext) { - Parameter(name, guitext, NULL, Parameter::SCOPE_USER, false, NULL, ext); - }; + Inkscape::Extension::Extension * ext); virtual ~Parameter (void); bool get_bool (const SPDocument * doc, |
