diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2012-04-18 07:02:24 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2012-04-18 07:02:24 +0000 |
| commit | 36e3c5550b49949729f2f23ab1796afdc53d6487 (patch) | |
| tree | 8e1dc72ecb79f130bf9c07576c7d97e44c9d0186 /src/extension/internal/svgz.cpp | |
| parent | Fix for 903676 : Replace GtkCList with GtkTreeView in XML Tree, fix assert on... (diff) | |
| download | inkscape-36e3c5550b49949729f2f23ab1796afdc53d6487.tar.gz inkscape-36e3c5550b49949729f2f23ab1796afdc53d6487.zip | |
Warning cleanup
(bzr r11265)
Diffstat (limited to 'src/extension/internal/svgz.cpp')
| -rw-r--r-- | src/extension/internal/svgz.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/extension/internal/svgz.cpp b/src/extension/internal/svgz.cpp index fceafd3ee..be9440980 100644 --- a/src/extension/internal/svgz.cpp +++ b/src/extension/internal/svgz.cpp @@ -40,10 +40,8 @@ namespace Internal { void Svgz::init(void) { - Inkscape::Extension::Extension * ext; - /* SVGZ in */ - ext = Inkscape::Extension::build_from_mem( + Inkscape::Extension::build_from_mem( "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n" "<name>" N_("SVGZ Input") "</name>\n" "<id>" SP_MODULE_KEY_INPUT_SVGZ "</id>\n" @@ -57,8 +55,8 @@ Svgz::init(void) "</input>\n" "</inkscape-extension>", new Svgz()); - /* SVGZ out Inkscape */ - ext = Inkscape::Extension::build_from_mem( + /* SVGZ out Inkscape */ + Inkscape::Extension::build_from_mem( "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n" "<name>" N_("SVGZ Output") "</name>\n" "<id>" SP_MODULE_KEY_OUTPUT_SVGZ_INKSCAPE "</id>\n" @@ -71,8 +69,8 @@ Svgz::init(void) "</output>\n" "</inkscape-extension>", new Svgz()); - /* SVGZ out */ - ext = Inkscape::Extension::build_from_mem( + /* SVGZ out */ + Inkscape::Extension::build_from_mem( "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n" "<name>" N_("SVGZ Output") "</name>\n" "<id>" SP_MODULE_KEY_OUTPUT_SVGZ "</id>\n" |
