]> git.lyx.org Git - features.git/commitdiff
buffer_ --> buffer()
authorRichard Heck <rgheck@comcast.net>
Tue, 10 Aug 2010 14:44:59 +0000 (14:44 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 10 Aug 2010 14:44:59 +0000 (14:44 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35117 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetBibtex.cpp
src/insets/InsetInclude.cpp

index a7990d97f4a08c69b259b94644a010b62aad9e30..a83068201b430fbb74df4eda0f3039dd4d3658c0 100644 (file)
@@ -52,14 +52,14 @@ namespace os = support::os;
 InsetBibtex::InsetBibtex(Buffer * buf, InsetCommandParams const & p)
        : InsetCommand(buf, p, "bibtex")
 {
-       buffer_->invalidateBibinfoCache();
+       buffer().invalidateBibinfoCache();
 }
 
 
 InsetBibtex::~InsetBibtex()
 {
        if (isBufferLoaded())
-               buffer_->invalidateBibfileCache();
+               buffer().invalidateBibfileCache();
 }
 
 
index 62804ffd167e48adbcae7999af6e462fc8e70584..a2164475c3308e4745543bc9e2b04917374edd11 100644 (file)
@@ -188,7 +188,7 @@ InsetInclude::InsetInclude(InsetInclude const & other)
 InsetInclude::~InsetInclude()
 {
        if (isBufferLoaded())
-               buffer_->invalidateBibfileCache();
+               buffer().invalidateBibfileCache();
        delete label_;
 }