mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
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:
parent
9791d934b0
commit
21947cd7e5
@ -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())
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user