[Libreoffice-commits] libvisio.git: src/conv
Fridrich Å trba
fridrich.strba at bluewin.ch
Thu Nov 7 22:32:35 CET 2013
src/conv/svg/vsd2xhtml.cpp | 2 +-
src/conv/svg/vss2xhtml.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8c10286ed99c0e8682c7563282a06da11cf136b2
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Thu Nov 7 22:32:11 2013 +0100
historically this svg was in svg namespace
Change-Id: If0eeb76c1ebb9e264b58c3597884b0370b74106f
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;
More information about the Libreoffice-commits
mailing list