From: Juergen Spitzmueller Date: Fri, 3 Jan 2020 12:39:50 +0000 (+0100) Subject: Fix copy-paste error (spotted by coverity) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b0e58445b8a13f96b1878fda94ad8eae712afa69;p=features.git Fix copy-paste error (spotted by coverity) --- diff --git a/src/Changes.cpp b/src/Changes.cpp index ed9205d530..64fb3c4d2e 100644 --- a/src/Changes.cpp +++ b/src/Changes.cpp @@ -380,7 +380,7 @@ docstring getLaTeXMarkup(docstring const & macro, Author const & author, "Choose an appropriate document encoding (such as utf8)\n" "or change the author initials."), uncodable_initials, author_initials_latexed.second)); - warned_author_initials.insert(uncodable_author); + warned_author_initials.insert(uncodable_initials); } } }