Next camel

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29817 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-05-23 10:48:22 +00:00
parent a2b1d2bed9
commit 99da022d51
2 changed files with 3 additions and 3 deletions

View File

@ -2065,7 +2065,7 @@ PrefUserInterface::PrefUserInterface(GuiPreferences * form)
connect(openDocumentsInTabsCB, SIGNAL(clicked()),
this, SIGNAL(changed()));
connect(uiFilePB, SIGNAL(clicked()),
this, SLOT(select_ui()));
this, SLOT(selectUi()));
connect(uiFileED, SIGNAL(textChanged(QString)),
this, SIGNAL(changed()));
connect(restoreCursorCB, SIGNAL(clicked()),
@ -2118,7 +2118,7 @@ void PrefUserInterface::update(LyXRC const & rc)
}
void PrefUserInterface::select_ui()
void PrefUserInterface::selectUi()
{
QString file = form_->browseUI(internalPath(uiFileED->text()));
if (!file.isEmpty())

View File

@ -412,7 +412,7 @@ public:
void update(LyXRC const & rc);
public Q_SLOTS:
void select_ui();
void selectUi();
void on_clearSessionPB_clicked();
};