mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
Re-order these to make it clearer what needs doing.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32161 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
62609ef706
commit
8b99f9c5b0
@ -1142,32 +1142,41 @@ PrefPaths::PrefPaths(GuiPreferences * form)
|
|||||||
: PrefModule(QString(), qt_("Paths"), form)
|
: PrefModule(QString(), qt_("Paths"), form)
|
||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
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(workingDirPB, SIGNAL(clicked()), this, SLOT(selectWorkingdir()));
|
||||||
connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
|
|
||||||
connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
|
|
||||||
connect(hunspellDirPB, SIGNAL(clicked()), this, SLOT(selectHunspelldir()));
|
|
||||||
connect(workingDirED, SIGNAL(textChanged(QString)),
|
connect(workingDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
connect(exampleDirED, SIGNAL(textChanged(QString)),
|
|
||||||
this, SIGNAL(changed()));
|
connect(templateDirPB, SIGNAL(clicked()), this, SLOT(selectTemplatedir()));
|
||||||
connect(templateDirED, SIGNAL(textChanged(QString)),
|
connect(templateDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
|
|
||||||
|
connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(selectExampledir()));
|
||||||
|
connect(exampleDirED, SIGNAL(textChanged(QString)),
|
||||||
|
this, SIGNAL(changed()));
|
||||||
|
|
||||||
|
connect(backupDirPB, SIGNAL(clicked()), this, SLOT(selectBackupdir()));
|
||||||
connect(backupDirED, SIGNAL(textChanged(QString)),
|
connect(backupDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
connect(tempDirED, SIGNAL(textChanged(QString)),
|
|
||||||
this, SIGNAL(changed()));
|
connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
|
||||||
connect(lyxserverDirED, SIGNAL(textChanged(QString)),
|
connect(lyxserverDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
|
|
||||||
|
connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
|
||||||
connect(thesaurusDirED, SIGNAL(textChanged(QString)),
|
connect(thesaurusDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
connect(pathPrefixED, SIGNAL(textChanged(QString)),
|
|
||||||
|
connect(tempDirPB, SIGNAL(clicked()), this, SLOT(selectTempdir()));
|
||||||
|
connect(tempDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
|
|
||||||
|
connect(hunspellDirPB, SIGNAL(clicked()), this, SLOT(selectHunspelldir()));
|
||||||
connect(hunspellDirED, SIGNAL(textChanged(QString)),
|
connect(hunspellDirED, SIGNAL(textChanged(QString)),
|
||||||
this, SIGNAL(changed()));
|
this, SIGNAL(changed()));
|
||||||
|
|
||||||
|
connect(pathPrefixED, SIGNAL(textChanged(QString)),
|
||||||
|
this, SIGNAL(changed()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user