From 708ebc04f66e07a9157bf58ebd9ed5d51eb7d738 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Matox?= Date: Thu, 17 May 2007 21:47:32 +0000 Subject: [PATCH] Fix for a problem reported by some users, where cut & paste of math insets in RTL paragraphs is garbled because of parentheses being reversed. See threads http://permalink.gmane.org/gmane.editors.lyx.devel/83938 and http://thread.gmane.org/gmane.editors.lyx.devel/83345/focus=83637 for details. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18388 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Paragraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index e870583d4e..0634bbafe5 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -2394,7 +2394,7 @@ docstring const Paragraph::asString(Buffer const & buffer, os << params().labelString() << ' '; for (pos_type i = beg; i < end; ++i) { - value_type const c = getUChar(buffer.params(), i); + value_type const c = getChar(i); if (isPrintable(c)) os.put(c); else if (c == META_INSET) -- 2.39.2