mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
GuiPrefs.cpp: fix copy/paste error from r21776
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21839 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
31ea0bb04d
commit
50b792122e
@ -748,7 +748,7 @@ PrefPaths::PrefPaths(GuiPreferences * form, QWidget * parent)
|
||||
connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(select_lyxpipe()));
|
||||
connect(workingDirED, SIGNAL(textChanged(QString)),
|
||||
this, SIGNAL(changed()));
|
||||
connect(exampleDirPB, SIGNAL(textChanged(QString)),
|
||||
connect(exampleDirED, SIGNAL(textChanged(QString)),
|
||||
this, SIGNAL(changed()));
|
||||
connect(templateDirED, SIGNAL(textChanged(QString)),
|
||||
this, SIGNAL(changed()));
|
||||
@ -793,7 +793,7 @@ void PrefPaths::select_exampledir()
|
||||
{
|
||||
docstring file(form_->browsedir(
|
||||
from_utf8(internal_path(fromqstr(exampleDirED->text()))),
|
||||
_("Select a document templates directory")));
|
||||
_("Select directory for example files")));
|
||||
if (!file.empty())
|
||||
exampleDirED->setText(toqstr(file));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user