]> git.lyx.org Git - features.git/commitdiff
Whitespace only.
authorJulien Rioux <jrioux@lyx.org>
Mon, 4 Feb 2013 16:51:59 +0000 (17:51 +0100)
committerJulien Rioux <jrioux@lyx.org>
Wed, 6 Feb 2013 16:37:56 +0000 (17:37 +0100)
src/insets/InsetBibitem.cpp
src/insets/InsetBibtex.cpp

index f150d0d52ad5db701daff9f346baf728f9b97f1d..a05b21d28b00deb14564f7e11247a629fd7abceb 100644 (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'");
index d0f7636796ab5b527935c23ef832c1491d3c4481..8a5e9fd3e047f82dada3c28edc5c4538267dce13 100644 (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;