Next camel

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29815 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-05-23 10:30:50 +00:00
parent 3389ded11b
commit 46ef6b0e48
2 changed files with 3 additions and 3 deletions

View 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())

View File

@ -316,7 +316,7 @@ public:
void update(LyXRC const & rc);
private Q_SLOTS:
void select_dict();
void selectDict();
};