The branch, master has been updated
       via  e90cd4180e0ee2a23a25f08fa97c9cee0d2557f8 (commit)
      from  d2acacedf915b825674079f5ef38abb215188d54 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e90cd4180e0ee2a23a25f08fa97c9cee0d2557f8
Author: Richard Heck <[email protected]>
Date:   Tue May 1 13:02:10 2012 -0400

    Constness, etc.

diff --git a/src/frontends/qt4/GuiBibtex.cpp b/src/frontends/qt4/GuiBibtex.cpp
index 8a2a27d..556b79c 100644
--- a/src/frontends/qt4/GuiBibtex.cpp
+++ b/src/frontends/qt4/GuiBibtex.cpp
@@ -317,7 +317,7 @@ void GuiBibtex::updateContents()
        for (int i = 0; i != bibfiles.count(); ++i)
                add_->bibLW->addItem(changeExtension(bibfiles[i], ""));
 
-       QString bibstyle = styleFile();
+       QString const bibstyle = styleFile();
 
        bibtocCB->setChecked(bibtotoc() && !bibtopic);
        bibtocCB->setEnabled(!bibtopic);
@@ -327,7 +327,7 @@ void GuiBibtex::updateContents()
        else if (bibtopic && btPrintCO->count() < 3)
                btPrintCO->insertItem(1, qt_("all uncited references", 0));
 
-       docstring btprint = params_["btprint"];
+       docstring const & btprint = params_["btprint"];
        int btp = 0;
        if ((bibtopic && btprint == "btPrintNotCited") ||
           (!bibtopic && btprint == "btPrintAll"))
@@ -341,7 +341,7 @@ void GuiBibtex::updateContents()
 
        int item_nr = -1;
 
-       QStringList str = bibStyles();
+       QStringList const str = bibStyles();
        for (int i = 0; i != str.count(); ++i) {
                QString item = changeExtension(str[i], "");
                if (item == bibstyle)

-----------------------------------------------------------------------

Summary of changes:
 src/frontends/qt4/GuiBibtex.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
The LyX Source Repository

Reply via email to