BiblioInfo.cpp: make it compilable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@29313 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2009-04-18 15:43:19 +00:00
parent 12fbbcc175
commit 3cbf60249a

View File

@ -352,7 +352,7 @@ docstring BibTeXInfo::getValueForKey(string const & key,
BibTeXInfo const * const xref) const
{
docstring const ret = operator[](key);
if (!ret.empty() or !xref)
if (!ret.empty() || !xref)
return ret;
return (*xref)[key];
}