From 49497a680328ed9baba4bdecaf7c3bd6fec27126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Tue, 11 Dec 2007 17:14:01 +0000 Subject: [PATCH] * src/tex2lyx/text.cpp: - add space between bounding box arguments (bug 4418). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22086 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tex2lyx/text.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tex2lyx/text.cpp b/src/tex2lyx/text.cpp index bed88329bd..c0d1258e63 100644 --- a/src/tex2lyx/text.cpp +++ b/src/tex2lyx/text.cpp @@ -1671,8 +1671,8 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer, numberOfbbOptions++; if (numberOfbbOptions == 4) os << "\tBoundingBox " - << opts["bbllx"] << opts["bblly"] - << opts["bburx"] << opts["bbury"] << '\n'; + << opts["bbllx"] << " " << opts["bblly"] << " " + << opts["bburx"] << " " << opts["bbury"] << '\n'; else if (numberOfbbOptions > 0) cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n"; numberOfbbOptions = 0; @@ -1682,7 +1682,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer, numberOfbbOptions++; if (numberOfbbOptions == 2) os << "\tBoundingBox 0bp 0bp " - << opts["natwidth"] << opts["natheight"] << '\n'; + << opts["natwidth"] << " " << opts["natheight"] << '\n'; else if (numberOfbbOptions > 0) cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n"; ostringstream special;