summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-02-27 09:21:24 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-02-27 09:21:24 +0000
commit6db75f666f5f58526a4821bc5c72abd8401a2166 (patch)
tree464d2b9c746e510841dd07943c5349738c06437a /src/extension/extension.cpp
parentSimplified tool selection and remember tool per device during a session (diff)
downloadinkscape-6db75f666f5f58526a4821bc5c72abd8401a2166.tar.gz
inkscape-6db75f666f5f58526a4821bc5c72abd8401a2166.zip
Fix passing of notebook extension parameters.
(bzr r4884)
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp
index 825a935ad..84f09aedb 100644
--- a/src/extension/extension.cpp
+++ b/src/extension/extension.cpp
@@ -706,8 +706,10 @@ Extension::paramListString (std::list <std::string> &retlist)
delete out;
retlist.insert(retlist.end(), param_string);
+
+ // insert parameters subparameters if any (for example notebook parameter has subparams)
+ param->insert_subparam_strings(retlist);
}
- //g_message("paramstring=%s", param_string->c_str());
return;
}