From 4584fa234ef3d7fbc42532031fb5eb7e26405836 Mon Sep 17 00:00:00 2001 From: David Mathog <> Date: Sat, 13 Oct 2012 01:00:15 +0200 Subject: Fix SVG formatting (EMF import): A typo caused two extra spaces to be appended on the end of any text which was read in from an EMF file. (bzr r11668.1.29) --- src/extension/internal/emf-inout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/extension/internal/emf-inout.cpp b/src/extension/internal/emf-inout.cpp index e1b20ee23..295bbd5ea 100644 --- a/src/extension/internal/emf-inout.cpp +++ b/src/extension/internal/emf-inout.cpp @@ -2775,7 +2775,7 @@ std::cout << "BEFORE DRAW" << "\"\n"; ts << " >"; ts << escaped_text; - ts << " "; + ts << ""; ts << "\n"; *(d->outsvg) += ts.str().c_str(); -- cgit v1.2.3