summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-11-07 22:32:11 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-11-07 22:32:11 +0100
commit8c10286ed99c0e8682c7563282a06da11cf136b2 (patch)
tree668fb74250aeddb68314e220df0a305619b08c52
parent0329157c79f7f5a03a0ef4f651978363d0f6e1ce (diff)
historically this svg was in svg namespace
Change-Id: If0eeb76c1ebb9e264b58c3597884b0370b74106f
-rw-r--r--src/conv/svg/vsd2xhtml.cpp2
-rw-r--r--src/conv/svg/vss2xhtml.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/conv/svg/vsd2xhtml.cpp b/src/conv/svg/vsd2xhtml.cpp
index e21a477..74fb06b 100644
--- a/src/conv/svg/vsd2xhtml.cpp
+++ b/src/conv/svg/vsd2xhtml.cpp
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
}
librevenge::RVNGStringVector output;
- librevenge::RVNGSVGDrawingGenerator generator(output, "");
+ librevenge::RVNGSVGDrawingGenerator generator(output, "svg");
if (!libvisio::VisioDocument::parse(&input, &generator))
{
std::cerr << "ERROR: SVG Generation failed!" << std::endl;
diff --git a/src/conv/svg/vss2xhtml.cpp b/src/conv/svg/vss2xhtml.cpp
index b96b639..5af2a05 100644
--- a/src/conv/svg/vss2xhtml.cpp
+++ b/src/conv/svg/vss2xhtml.cpp
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
}
librevenge::RVNGStringVector output;
- librevenge::RVNGSVGDrawingGenerator generator(output, "");
+ librevenge::RVNGSVGDrawingGenerator generator(output, "svg");
if (!libvisio::VisioDocument::parseStencils(&input, &generator))
{
std::cerr << "ERROR: SVG Generation failed!" << std::endl;