summaryrefslogtreecommitdiffstats
path: root/src/extension/parameter.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2007-07-03 03:48:00 +0000
committergouldtj <gouldtj@users.sourceforge.net>2007-07-03 03:48:00 +0000
commitf2adaa230449e89c0e69e1419fd29cdfade54a73 (patch)
treea6b80b9c2ff7a6975ad2df776b173a2b2b91b455 /src/extension/parameter.cpp
parentfix wrong modified signal handling: connecting was sigc but disconnecting was... (diff)
downloadinkscape-f2adaa230449e89c0e69e1419fd29cdfade54a73.tar.gz
inkscape-f2adaa230449e89c0e69e1419fd29cdfade54a73.zip
r15702@tres: ted | 2007-07-02 15:17:48 -0700
Quotes were added to block shell variables, but now that we're using the GTK+ call we can assume that shells don't really get involved. (bzr r3161)
Diffstat (limited to 'src/extension/parameter.cpp')
-rw-r--r--src/extension/parameter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/extension/parameter.cpp b/src/extension/parameter.cpp
index a9b6c5896..b35052a0e 100644
--- a/src/extension/parameter.cpp
+++ b/src/extension/parameter.cpp
@@ -987,9 +987,7 @@ Glib::ustring *
ParamEnum::string (void)
{
Glib::ustring * mystring = new Glib::ustring("");
- *mystring += "\"";
*mystring += this->get(NULL, NULL);
- *mystring += "\"";
return mystring;
}