From fc63c87e2efcf974a9fdd160df34fc9d79892e5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 12 Jun 2009 14:29:39 +0000 Subject: [PATCH] * BiblioInfo.cpp: - convert author/editor to proper unicode. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30072 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BiblioInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BiblioInfo.cpp b/src/BiblioInfo.cpp index 92af3b5aba..c5548af832 100644 --- a/src/BiblioInfo.cpp +++ b/src/BiblioInfo.cpp @@ -218,9 +218,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_; } -- 2.39.2