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:
Uwe Stöhr 2007-11-27 23:39:44 +00:00
parent 31ea0bb04d
commit 50b792122e

View File

@ -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));
}