From: Pavel Sanda Date: Sat, 23 May 2009 10:30:50 +0000 (+0000) Subject: Next camel X-Git-Tag: 2.0.0~6469 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=46ef6b0e485ba5fc44ba5d701529da6bce1ace89;p=features.git Next camel git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29815 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiPrefs.cpp b/src/frontends/qt4/GuiPrefs.cpp index 1ba37d3097..3808798b50 100644 --- a/src/frontends/qt4/GuiPrefs.cpp +++ b/src/frontends/qt4/GuiPrefs.cpp @@ -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()) diff --git a/src/frontends/qt4/GuiPrefs.h b/src/frontends/qt4/GuiPrefs.h index d773839a1c..492de02477 100644 --- a/src/frontends/qt4/GuiPrefs.h +++ b/src/frontends/qt4/GuiPrefs.h @@ -316,7 +316,7 @@ public: void update(LyXRC const & rc); private Q_SLOTS: - void select_dict(); + void selectDict(); };