]> git.lyx.org Git - lyx.git/commitdiff
Fix mis-nomer
authorJuergen Spitzmueller <spitz@lyx.org>
Wed, 7 Dec 2016 15:50:54 +0000 (16:50 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Wed, 7 Dec 2016 15:50:54 +0000 (16:50 +0100)
src/insets/InsetQuotes.cpp

index 84dbe1ab85a3c377e4e0be5a885ec2ad1eb87705..0773e284ef26827d1c09ac401252346645e16e7b 100644 (file)
@@ -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] = {
        { "&sbquo;",  "&rsquo;", "&lsquo;",
          "&lsaquo;", "&rsaquo;" },
   { "&bdquo;", "&rdquo;", "&ldquo;", "&laquo;", "&raquo;" }
@@ -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]);
 }