]> git.lyx.org Git - features.git/commitdiff
Next camel
authorPavel Sanda <sanda@lyx.org>
Sat, 23 May 2009 10:15:24 +0000 (10:15 +0000)
committerPavel Sanda <sanda@lyx.org>
Sat, 23 May 2009 10:15:24 +0000 (10:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29813 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiPrefs.cpp
src/frontends/qt4/GuiPrefs.h

index a5df00d90c121a00cede68c6531c11dd7d982dc1..6376e1110fc8684f84d9d09672a881e22f7f1321 100644 (file)
@@ -992,11 +992,11 @@ PrefColors::PrefColors(GuiPreferences * form)
        // End initialization
 
        connect(colorChangePB, SIGNAL(clicked()),
-               this, SLOT(change_color()));
+               this, SLOT(changeColor()));
        connect(lyxObjectsLW, SIGNAL(itemSelectionChanged()),
-               this, SLOT(change_lyxObjects_selection()));
+               this, SLOT(changeLyxObjectsSelection()));
        connect(lyxObjectsLW, SIGNAL(itemActivated(QListWidgetItem*)),
-               this, SLOT(change_color()));
+               this, SLOT(changeColor()));
 }
 
 
@@ -1017,11 +1017,11 @@ void PrefColors::update(LyXRC const & /*rc*/)
                lyxObjectsLW->item(i)->setIcon(QIcon(coloritem));
                newcolors_[i] = curcolors_[i] = color.name();
        }
-       change_lyxObjects_selection();
+       changeLyxObjectsSelection();
 }
 
 
-void PrefColors::change_color()
+void PrefColors::changeColor()
 {
        int const row = lyxObjectsLW->currentRow();
 
@@ -1042,7 +1042,7 @@ void PrefColors::change_color()
        }
 }
 
-void PrefColors::change_lyxObjects_selection()
+void PrefColors::changeLyxObjectsSelection()
 {
        colorChangePB->setDisabled(lyxObjectsLW->currentRow() < 0);
 }
index 83ac23345d3c2e55c52d21ee62363661c78645dd..04a3d394087c883cd2d996fe6f70566b6a8d143b 100644 (file)
@@ -264,8 +264,8 @@ public:
        void update(LyXRC const & rc);
 
 private Q_SLOTS:
-       void change_color();
-       void change_lyxObjects_selection();
+       void changeColor();
+       void changeLyxObjectsSelection();
 
 private:
        std::vector<ColorCode> lcolors_;