Next camel

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

View File

@ -1112,13 +1112,13 @@ PrefPaths::PrefPaths(GuiPreferences * form)
: PrefModule(QString(), qt_("Paths"), form) : PrefModule(QString(), qt_("Paths"), form)
{ {
setupUi(this); setupUi(this);
connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(select_exampledir())); connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(selectExampledir()));
connect(templateDirPB, SIGNAL(clicked()), this, SLOT(select_templatedir())); connect(templateDirPB, SIGNAL(clicked()), this, SLOT(selectTemplatedir()));
connect(tempDirPB, SIGNAL(clicked()), this, SLOT(select_tempdir())); connect(tempDirPB, SIGNAL(clicked()), this, SLOT(selectTempdir()));
connect(backupDirPB, SIGNAL(clicked()), this, SLOT(select_backupdir())); connect(backupDirPB, SIGNAL(clicked()), this, SLOT(selectBackupdir()));
connect(workingDirPB, SIGNAL(clicked()), this, SLOT(select_workingdir())); connect(workingDirPB, SIGNAL(clicked()), this, SLOT(selectWorkingdir()));
connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(select_lyxpipe())); connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(select_thesaurusdir())); connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
connect(workingDirED, SIGNAL(textChanged(QString)), connect(workingDirED, SIGNAL(textChanged(QString)),
this, SIGNAL(changed())); this, SIGNAL(changed()));
connect(exampleDirED, SIGNAL(textChanged(QString)), connect(exampleDirED, SIGNAL(textChanged(QString)),
@ -1166,7 +1166,7 @@ void PrefPaths::update(LyXRC const & rc)
} }
void PrefPaths::select_exampledir() void PrefPaths::selectExampledir()
{ {
QString file = browseDir(internalPath(exampleDirED->text()), QString file = browseDir(internalPath(exampleDirED->text()),
qt_("Select directory for example files")); qt_("Select directory for example files"));
@ -1175,7 +1175,7 @@ void PrefPaths::select_exampledir()
} }
void PrefPaths::select_templatedir() void PrefPaths::selectTemplatedir()
{ {
QString file = browseDir(internalPath(templateDirED->text()), QString file = browseDir(internalPath(templateDirED->text()),
qt_("Select a document templates directory")); qt_("Select a document templates directory"));
@ -1184,7 +1184,7 @@ void PrefPaths::select_templatedir()
} }
void PrefPaths::select_tempdir() void PrefPaths::selectTempdir()
{ {
QString file = browseDir(internalPath(tempDirED->text()), QString file = browseDir(internalPath(tempDirED->text()),
qt_("Select a temporary directory")); qt_("Select a temporary directory"));
@ -1193,7 +1193,7 @@ void PrefPaths::select_tempdir()
} }
void PrefPaths::select_backupdir() void PrefPaths::selectBackupdir()
{ {
QString file = browseDir(internalPath(backupDirED->text()), QString file = browseDir(internalPath(backupDirED->text()),
qt_("Select a backups directory")); qt_("Select a backups directory"));
@ -1202,7 +1202,7 @@ void PrefPaths::select_backupdir()
} }
void PrefPaths::select_workingdir() void PrefPaths::selectWorkingdir()
{ {
QString file = browseDir(internalPath(workingDirED->text()), QString file = browseDir(internalPath(workingDirED->text()),
qt_("Select a document directory")); qt_("Select a document directory"));
@ -1211,7 +1211,7 @@ void PrefPaths::select_workingdir()
} }
void PrefPaths::select_thesaurusdir() void PrefPaths::selectThesaurusdir()
{ {
QString file = browseDir(internalPath(thesaurusDirED->text()), QString file = browseDir(internalPath(thesaurusDirED->text()),
qt_("Set the path to the thesaurus dictionaries")); qt_("Set the path to the thesaurus dictionaries"));
@ -1220,7 +1220,7 @@ void PrefPaths::select_thesaurusdir()
} }
void PrefPaths::select_lyxpipe() void PrefPaths::selectLyxPipe()
{ {
QString file = form_->browse(internalPath(lyxserverDirED->text()), QString file = form_->browse(internalPath(lyxserverDirED->text()),
qt_("Give a filename for the LyX server pipe")); qt_("Give a filename for the LyX server pipe"));

View File

@ -295,13 +295,13 @@ public:
void update(LyXRC const & rc); void update(LyXRC const & rc);
private Q_SLOTS: private Q_SLOTS:
void select_exampledir(); void selectExampledir();
void select_templatedir(); void selectTemplatedir();
void select_tempdir(); void selectTempdir();
void select_backupdir(); void selectBackupdir();
void select_workingdir(); void selectWorkingdir();
void select_thesaurusdir(); void selectThesaurusdir();
void select_lyxpipe(); void selectLyxPipe();
}; };