Whitespace only.

This commit is contained in:
Julien Rioux 2013-02-04 17:51:59 +01:00
parent 7333494c89
commit f94d77ae88
2 changed files with 4 additions and 4 deletions

View File

@ -340,7 +340,7 @@ docstring InsetBibitem::xhtml(XHTMLStream & xs, OutputParams const &) const
// need to use "name" anyway, eventually, because some browsers do not
// handle jumping to ids. If we don't do that, though, we can just put the
// id into the span tag.
string const attrs =
string const attrs =
"id='LyXCite-" + to_utf8(html::cleanAttr(getParam("key"))) + "'";
xs << html::CompTag("a", attrs);
xs << html::StartTag("span", "class='bibitemlabel'");

View File

@ -799,7 +799,7 @@ void InsetBibtex::parseBibTeXFiles() const
docstring key;
if (!readTypeOrKey(key, ifs, from_ascii(","), from_ascii("}"), keepCase)) {
lyxerr << "BibTeX Parser: Unable to read key for entry type:" <<
lyxerr << "BibTeX Parser: Unable to read key for entry type:" <<
entryType << "." << std::endl;
continue;
}
@ -880,7 +880,7 @@ FileName InsetBibtex::getBibTeXPath(docstring const & filename, Buffer const & b
file = FileName(makeAbsPath(texfile, buf.filePath()));
return file;
}
bool InsetBibtex::addDatabase(docstring const & db)
{
@ -1004,7 +1004,7 @@ docstring InsetBibtex::xhtml(XHTMLStream & xs, OutputParams const &) const
xs << html::StartTag("div", "class='bibtexentry'");
// FIXME XHTML
// The same name/id problem we have elsewhere.
string const attr =
string const attr =
"id='LyXCite-" + to_utf8(html::cleanAttr(entry.key())) + "'";
xs << html::CompTag("a", attr);
docstring citekey;