From 23345956ef7a3220ff381ee9a81a67c0a160850f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 12 Jun 2009 14:34:44 +0000 Subject: [PATCH] * BiblioInfo.cpp: - convert author/editor to proper unicode. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@30073 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BiblioInfo.cpp | 4 ++-- status.16x | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/BiblioInfo.cpp b/src/BiblioInfo.cpp index 6d0227352c..376889c9eb 100644 --- a/src/BiblioInfo.cpp +++ b/src/BiblioInfo.cpp @@ -219,9 +219,9 @@ docstring const BibTeXInfo::getAbbreviatedAuthor() const return authors; } - docstring author = operator[]("author"); + docstring author = convertLaTeXCommands(operator[]("author")); if (author.empty()) { - author = operator[]("editor"); + author = convertLaTeXCommands(operator[]("editor")); if (author.empty()) return bib_key_; } diff --git a/status.16x b/status.16x index 30ef0a170b..bfba8a163d 100644 --- a/status.16x +++ b/status.16x @@ -91,6 +91,10 @@ What's new - Fix display of BibTeX entries in the info field of the citation dialog by only converting text mode latex macros to unicode points. + +- Convert LaTeX macros to proper unicode characters for the display + of authors/editors on the citation inset button. + * DOCUMENTATION AND LOCALIZATION