diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2012-04-04 06:59:33 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2012-04-04 06:59:33 +0000 |
| commit | dcda11ad8115fd98fb00947e0f6d40c59def8c3e (patch) | |
| tree | 73131fc55aa745843a74cd33e964ef9d0422fdac /src/extension/script/InkscapeScript.cpp | |
| parent | Corrected logic error with sig::connection bool operator. (diff) | |
| download | inkscape-dcda11ad8115fd98fb00947e0f6d40c59def8c3e.tar.gz inkscape-dcda11ad8115fd98fb00947e0f6d40c59def8c3e.zip | |
Warning cleanup.
(bzr r11144)
Diffstat (limited to 'src/extension/script/InkscapeScript.cpp')
| -rw-r--r-- | src/extension/script/InkscapeScript.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/script/InkscapeScript.cpp b/src/extension/script/InkscapeScript.cpp index 9f8ebfbbb..02cd28fa5 100644 --- a/src/extension/script/InkscapeScript.cpp +++ b/src/extension/script/InkscapeScript.cpp @@ -67,9 +67,9 @@ InkscapeScript::~InkscapeScript() * enumerated types in ScriptLanguage above. */ bool InkscapeScript::interpretScript(const Glib::ustring &script, - Glib::ustring &output, - Glib::ustring &error, - ScriptLanguage language) + Glib::ustring & /*output*/, + Glib::ustring & /*error*/, + ScriptLanguage language) { const char *langname=NULL; //if() instead of switch() lets us scope vars @@ -135,9 +135,9 @@ bool InkscapeScript::interpretScript(const Glib::ustring &script, * enumerated types in ScriptLanguage above. */ bool InkscapeScript::interpretFile(const Glib::ustring &fname, - Glib::ustring &output, - Glib::ustring &error, - ScriptLanguage language) + Glib::ustring & /*output*/, + Glib::ustring & /*error*/, + ScriptLanguage language) { const char *langname=NULL; //if() instead of switch() lets us scope vars |
