* 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
This commit is contained in:
Jürgen Spitzmüller 2009-06-12 14:29:39 +00:00
parent 411b7a1dec
commit fc63c87e2e

View File

@ -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_;
}