]> git.lyx.org Git - features.git/commitdiff
stickToCodingConventions.
authorJürgen Spitzmüller <spitz@lyx.org>
Sat, 23 May 2009 08:01:38 +0000 (08:01 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Sat, 23 May 2009 08:01:38 +0000 (08:01 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29807 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiGraphics.cpp
src/frontends/qt4/GuiGraphics.h

index ed370ebf7471c87ef2019dcd00158f8a5d0a8922..7e28a0c83a91a77f6218d9a22437d17e7c389d7f 100644 (file)
@@ -207,21 +207,21 @@ GuiGraphics::GuiGraphics(GuiView & lv)
        connect(clip, SIGNAL(stateChanged(int)),
                this, SLOT(change_adaptor()));
        connect(lbY, SIGNAL(textChanged(const QString&)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(lbYunit, SIGNAL(activated(int)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(rtY, SIGNAL(textChanged(const QString&)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(rtYunit, SIGNAL(activated(int)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(lbX, SIGNAL(textChanged(const QString&)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(lbXunit, SIGNAL(activated(int)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(rtX, SIGNAL(textChanged(const QString&)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(rtXunit, SIGNAL(activated(int)),
-               this, SLOT(change_bb()));
+               this, SLOT(changeBB()));
        connect(getPB, SIGNAL(clicked()),
                this, SLOT(change_adaptor()));
 
@@ -248,7 +248,7 @@ GuiGraphics::GuiGraphics(GuiView & lv)
        connect(displayscale, SIGNAL(textChanged(const QString&)),
                this, SLOT(change_adaptor()));
        connect(groupCO, SIGNAL(currentIndexChanged(int)),
-               this, SLOT(change_group(int)));
+               this, SLOT(changeGroup(int)));
 
        displayscale->setValidator(new QIntValidator(displayscale));
 
@@ -294,7 +294,7 @@ void GuiGraphics::change_adaptor()
 }
 
 
-void GuiGraphics::change_group(int /* index */)
+void GuiGraphics::changeGroup(int /* index */)
 {
        QString const new_group = groupCO->itemData(
                groupCO->currentIndex()).toString();
@@ -384,7 +384,7 @@ void GuiGraphics::on_newGroupPB_clicked()
 }
 
 
-void GuiGraphics::change_bb()
+void GuiGraphics::changeBB()
 {
        bbChanged = true;
        LYXERR(Debug::GRAPHICS, "[bb_Changed set to true]");
index 2fbd77989881c2788ba5a170cdfb6c3b30471638..67a4cbeac299d05cf32cbf354e92b2e1085b91ae 100644 (file)
@@ -40,8 +40,8 @@ public:
 
 private Q_SLOTS:
        void change_adaptor();
-       void change_group(int);
-       void change_bb();
+       void changeGroup(int);
+       void changeBB();
        void on_newGroupPB_clicked();
        void on_browsePB_clicked();
        void on_getPB_clicked();