summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/svg.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2012-04-18 07:02:24 +0000
committerJon A. Cruz <jon@joncruz.org>2012-04-18 07:02:24 +0000
commit36e3c5550b49949729f2f23ab1796afdc53d6487 (patch)
tree8e1dc72ecb79f130bf9c07576c7d97e44c9d0186 /src/extension/internal/svg.cpp
parentFix for 903676 : Replace GtkCList with GtkTreeView in XML Tree, fix assert on... (diff)
downloadinkscape-36e3c5550b49949729f2f23ab1796afdc53d6487.tar.gz
inkscape-36e3c5550b49949729f2f23ab1796afdc53d6487.zip
Warning cleanup
(bzr r11265)
Diffstat (limited to '')
-rw-r--r--src/extension/internal/svg.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/extension/internal/svg.cpp b/src/extension/internal/svg.cpp
index d054e4427..7d0b8299c 100644
--- a/src/extension/internal/svg.cpp
+++ b/src/extension/internal/svg.cpp
@@ -83,10 +83,8 @@ void pruneExtendedAttributes( Inkscape::XML::Node *repr )
void
Svg::init(void)
{
- Inkscape::Extension::Extension * ext;
-
/* SVG in */
- ext = Inkscape::Extension::build_from_mem(
+ Inkscape::Extension::build_from_mem(
"<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
"<name>" N_("SVG Input") "</name>\n"
"<id>" SP_MODULE_KEY_INPUT_SVG "</id>\n"
@@ -100,7 +98,7 @@ Svg::init(void)
"</inkscape-extension>", new Svg());
/* SVG out Inkscape */
- ext = Inkscape::Extension::build_from_mem(
+ Inkscape::Extension::build_from_mem(
"<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
"<name>" N_("SVG Output Inkscape") "</name>\n"
"<id>" SP_MODULE_KEY_OUTPUT_SVG_INKSCAPE "</id>\n"
@@ -114,7 +112,7 @@ Svg::init(void)
"</inkscape-extension>", new Svg());
/* SVG out */
- ext = Inkscape::Extension::build_from_mem(
+ Inkscape::Extension::build_from_mem(
"<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
"<name>" N_("SVG Output") "</name>\n"
"<id>" SP_MODULE_KEY_OUTPUT_SVG "</id>\n"