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

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

index 6376e1110fc8684f84d9d09672a881e22f7f1321..1ba37d3097dc9638088c2e770485b7f97f835705 100644 (file)
@@ -1112,13 +1112,13 @@ PrefPaths::PrefPaths(GuiPreferences * form)
        : PrefModule(QString(), qt_("Paths"), form)
 {
        setupUi(this);
-       connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(select_exampledir()));
-       connect(templateDirPB, SIGNAL(clicked()), this, SLOT(select_templatedir()));
-       connect(tempDirPB, SIGNAL(clicked()), this, SLOT(select_tempdir()));
-       connect(backupDirPB, SIGNAL(clicked()), this, SLOT(select_backupdir()));
-       connect(workingDirPB, SIGNAL(clicked()), this, SLOT(select_workingdir()));
-       connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(select_lyxpipe()));
-       connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(select_thesaurusdir()));
+       connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(selectExampledir()));
+       connect(templateDirPB, SIGNAL(clicked()), this, SLOT(selectTemplatedir()));
+       connect(tempDirPB, SIGNAL(clicked()), this, SLOT(selectTempdir()));
+       connect(backupDirPB, SIGNAL(clicked()), this, SLOT(selectBackupdir()));
+       connect(workingDirPB, SIGNAL(clicked()), this, SLOT(selectWorkingdir()));
+       connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
+       connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
        connect(workingDirED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        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()),
                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()),
                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()),
                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()),
                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()),
                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()),
                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()),
                qt_("Give a filename for the LyX server pipe"));
index 04a3d394087c883cd2d996fe6f70566b6a8d143b..d773839a1c068e9e31584f19166042e77019969a 100644 (file)
@@ -295,13 +295,13 @@ public:
        void update(LyXRC const & rc);
 
 private Q_SLOTS:
-       void select_exampledir();
-       void select_templatedir();
-       void select_tempdir();
-       void select_backupdir();
-       void select_workingdir();
-       void select_thesaurusdir();
-       void select_lyxpipe();
+       void selectExampledir();
+       void selectTemplatedir();
+       void selectTempdir();
+       void selectBackupdir();
+       void selectWorkingdir();
+       void selectThesaurusdir();
+       void selectLyxPipe();
 
 };