]> git.lyx.org Git - features.git/commitdiff
* BiblioInfo.cpp:
authorJürgen Spitzmüller <spitz@lyx.org>
Fri, 12 Jun 2009 14:29:39 +0000 (14:29 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Fri, 12 Jun 2009 14:29:39 +0000 (14:29 +0000)
- 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

index 92af3b5abae8457e572abcb1ef61f43d28de6377..c5548af832caff6aa641cf2f6892589d04f40bb8 100644 (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_;
        }