From 50b792122e2f1391d849b2f0ef8af536c988a3c2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Tue, 27 Nov 2007 23:39:44 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/GuiPrefs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/GuiPrefs.cpp b/src/frontends/qt4/GuiPrefs.cpp index 1bc43e4e4f..f1d6d106c8 100644 --- a/src/frontends/qt4/GuiPrefs.cpp +++ b/src/frontends/qt4/GuiPrefs.cpp @@ -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)); } -- 2.39.2