]> git.lyx.org Git - features.git/commitdiff
Minor cleanup. We don't need the deleted call, as that is done at the
authorRichard Heck <rgheck@comcast.net>
Mon, 9 Aug 2010 17:14:45 +0000 (17:14 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 9 Aug 2010 17:14:45 +0000 (17:14 +0000)
beginning of updateBuffer() anyway.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35104 a592a061-630c-0410-9148-cb99ea01b6c8

src/Buffer.cpp
src/Buffer.h

index bac5e52655428361d87a94a9230e31be153f3730..2ced899b47497934323d204a4ccfe632c6463a62 100644 (file)
@@ -1577,7 +1577,6 @@ void Buffer::writeLyXHTMLSource(odocstream & os,
        LaTeXFeatures features(*this, params(), runparams);
        validate(features);
        updateBuffer(UpdateMaster, OutputUpdate);
-       checkBibInfoCache();
        d->bibinfo_.makeCitationLabels(*this);
        updateMacros();
        updateMacroInstances();
index ef6e3274b83739a83ea7bfc82d27e90ad472f948..5186994eaa760812c1f260170383f278f540b992 100644 (file)
@@ -342,10 +342,6 @@ public:
        */
        void validate(LaTeXFeatures &) const;
 
-       /// Return the list with all bibfiles in use (including bibfiles
-       /// of loaded child documents).
-       support::FileNameList const & 
-               getBibfilesCache(UpdateScope scope = UpdateMaster) const;
        /// Information from BibTeX databases is cached in the Buffer, so
        /// we do not have to read the file over and over. 
        /// Calling this method invalidates the cache and so requires a
@@ -581,6 +577,10 @@ private:
        /// Update the list of all bibfiles in use (including bibfiles
        /// of loaded child documents).
        void updateBibfilesCache(UpdateScope scope = UpdateMaster) const;
+       /// Return the list with all bibfiles in use (including bibfiles
+       /// of loaded child documents).
+       support::FileNameList const & 
+               getBibfilesCache(UpdateScope scope = UpdateMaster) const;
 
        /// Use the Pimpl idiom to hide the internals.
        class Impl;