[LyX/master] Renaming
Richard Kimberly Heck
rikiheck at lyx.org
Sun Dec 6 01:00:42 UTC 2020
commit ad887798c9d7416120967860e200cf8350559dcd
Author: Richard Kimberly Heck <rikiheck at lyx.org>
Date: Sat Dec 5 20:30:29 2020 -0500
Renaming
---
src/Buffer.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/Buffer.cpp b/src/Buffer.cpp
index 08095a1..ddce2db 100644
--- a/src/Buffer.cpp
+++ b/src/Buffer.cpp
@@ -2592,16 +2592,16 @@ void Buffer::collectBibKeys(FileNameList & checkedFiles) const
}
-void Buffer::addBiblioInfo(BiblioInfo const & bin) const
+void Buffer::addBiblioInfo(BiblioInfo const & bi_in) const
{
// We add the biblio info to the parent buffer,
// if there is one, but also to this buffer, in case
// it is compiled alone.
- BiblioInfo & bi = d->bibinfo_;
- bi.mergeBiblioInfo(bin);
+ BiblioInfo & our_bi = d->bibinfo_;
+ our_bi.mergeBiblioInfo(bi_in);
if (parent())
- parent()->addBiblioInfo(bin);
+ parent()->addBiblioInfo(bi_in);
}
More information about the lyx-cvs
mailing list