From e4c46abeb7385960c9dd42494e3c7c1f3e699b56 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Wed, 7 Dec 2016 16:50:54 +0100 Subject: [PATCH] Fix mis-nomer --- src/insets/InsetQuotes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp index 84dbe1ab85..0773e284ef 100644 --- a/src/insets/InsetQuotes.cpp +++ b/src/insets/InsetQuotes.cpp @@ -88,7 +88,7 @@ char const * const latex_quote_babel[2][5] = { { "\\glqq ", "''", "``", "\\flqq{}", "\\frqq{}" } }; -char const * const latex_quote_html[2][5] = { +char const * const html_quote[2][5] = { { "‚", "’", "‘", "‹", "›" }, { "„", "”", "“", "«", "»" } @@ -297,7 +297,7 @@ int InsetQuotes::plaintext(odocstringstream & os, docstring InsetQuotes::getQuoteEntity() const { const int quoteind = quote_index[side_][language_]; - return from_ascii(latex_quote_html[times_][quoteind]); + return from_ascii(html_quote[times_][quoteind]); } -- 2.39.2