]> git.lyx.org Git - features.git/blobdiff - src/BiblioInfo.cpp
cosmetics. mainly replace #include "dostring.h" by #include "strfwd.h"
[features.git] / src / BiblioInfo.cpp
index fd74f0346fe76fcb31d6a7e37b2c8e7c190668da..a6113cf509b1a5fec1ef594ef9e802a503c1a43c 100644 (file)
@@ -26,6 +26,7 @@
 #include "insets/InsetInclude.h"
 
 #include "support/lstrings.h"
+#include "support/docstream.h"
 
 #include "boost/regex.hpp"
 
@@ -412,7 +413,7 @@ void BiblioInfo::fillWithBibKeys(Buffer const * const buf)
 {      
        /// if this is a child document and the parent is already loaded
        /// use the parent's list instead  [ale990412]
-       Buffer const * const tmp = buf->getMasterBuffer();
+       Buffer const * const tmp = buf->masterBuffer();
        BOOST_ASSERT(tmp);
        if (tmp != buf) {
                this->fillWithBibKeys(tmp);
@@ -420,7 +421,7 @@ void BiblioInfo::fillWithBibKeys(Buffer const * const buf)
        }
 
        // Pre-load all child documents.
-       loadChildDocuments(*buf);
+       buf->loadChildDocuments();
 
        for (InsetIterator it = inset_iterator_begin(buf->inset()); it; ++it)
                it->fillWithBibKeys(*buf, *this, it);