From: Jürgen Spitzmüller Date: Fri, 12 Jun 2009 14:29:39 +0000 (+0000) Subject: * BiblioInfo.cpp: X-Git-Tag: 2.0.0~6329 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=fc63c87e2efcf974a9fdd160df34fc9d79892e5c;p=features.git * 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 --- 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_; }