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

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

index 1ba37d3097dc9638088c2e770485b7f97f835705..3808798b50e856d70b7e1fbcb8649102d97f6914 100644 (file)
@@ -1240,7 +1240,7 @@ PrefSpellchecker::PrefSpellchecker(GuiPreferences * form)
 {
        setupUi(this);
 
-       connect(persDictionaryPB, SIGNAL(clicked()), this, SLOT(select_dict()));
+       connect(persDictionaryPB, SIGNAL(clicked()), this, SLOT(selectDict()));
 
        connect(altLanguageED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
@@ -1288,7 +1288,7 @@ void PrefSpellchecker::update(LyXRC const & rc)
 }
 
 
-void PrefSpellchecker::select_dict()
+void PrefSpellchecker::selectDict()
 {
        QString file = form_->browsedict(internalPath(persDictionaryED->text()));
        if (!file.isEmpty())
index d773839a1c068e9e31584f19166042e77019969a..492de0247776a5e2ae6ffc6c6f322d8582e37bc7 100644 (file)
@@ -316,7 +316,7 @@ public:
        void update(LyXRC const & rc);
 
 private Q_SLOTS:
-       void select_dict();
+       void selectDict();
 };