Fix warnings.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@33610 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-02 15:13:00 +00:00
parent 9791d934b0
commit 21947cd7e5
2 changed files with 4 additions and 4 deletions

View File

@ -130,8 +130,8 @@ docstring convertLaTeXCommands(docstring const & str)
scanning_cmd = false;
}
// was the last character a \? If so, then this is something like: \\
// or \$, so we'll just output it. That's probably not always right...
// was the last character a \? If so, then this is something like: \\ or
// \$, so we'll just output it. That's probably not always right...
if (escaped) {
// exception: output \, as THIN SPACE
if (ch == ',')
@ -472,7 +472,7 @@ docstring const BiblioInfo::getInfo(docstring const & key) const
}
bool const BiblioInfo::isBibtex(docstring const & key) const
bool BiblioInfo::isBibtex(docstring const & key) const
{
BiblioInfo::const_iterator it = find(key);
if (it == end())

View File

@ -130,7 +130,7 @@ public:
docstring const getInfo(docstring const & key) const;
/// Is this a reference from a bibtex database
/// or from a bibliography environment?
bool const isBibtex(docstring const & key) const;
bool isBibtex(docstring const & key) const;
/**
* "Translates" the available Citation Styles into strings for a given key,