From: Juergen Spitzmueller Date: Fri, 19 Jun 2020 14:40:07 +0000 (+0200) Subject: Fix swapped logic (#11889) X-Git-Tag: lyx-2.4.0dev-acb2ca7b~724 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bde95c1876c78f5391d80b1c547411ba5886f347;p=lyx.git Fix swapped logic (#11889) --- diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp index d7f7510ebd..aa2e41bea8 100644 --- a/src/insets/InsetQuotes.cpp +++ b/src/insets/InsetQuotes.cpp @@ -350,7 +350,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op, case 0x2019: {// ' if (op == "int") // This macro is redefined in rtl mode - res = rtl ? "\\textquoteright" : "\\textquoteleft"; + res = rtl ? "\\textquoteleft" : "\\textquoteright"; else res = "'"; break; @@ -358,7 +358,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op, case 0x2018: {// ` if (op == "int") // This macro is redefined in rtl mode - res = rtl ? "\\textquoteleft" : "\\textquoteright"; + res = rtl ? "\\textquoteright" : "\\textquoteleft"; else res = "`"; break; @@ -393,7 +393,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op, case 0x201d: {// '' if (op == "int") // This macro is redefined in rtl mode - res = rtl ? "\\textquotedblright" : "\\textquotedblleft"; + res = rtl ? "\\textquotedblleft" : "\\textquotedblright"; else res = "''"; break; @@ -401,7 +401,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op, case 0x201c: {// `` if (op == "int") // This macro is redefined in rtl mode - res = rtl ? "\\textquotedblleft" : "\\textquotedblright"; + res = rtl ? "\\textquotedblright" : "\\textquotedblleft"; else res = "``"; break;