]> git.lyx.org Git - lyx.git/commitdiff
GuiPrefs.cpp: fix copy/paste error from r21776
authorUwe Stöhr <uwestoehr@web.de>
Tue, 27 Nov 2007 23:39:44 +0000 (23:39 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Tue, 27 Nov 2007 23:39:44 +0000 (23:39 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21839 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiPrefs.cpp

index 1bc43e4e4fd92c1f40e9576f4c39fe6282c013b3..f1d6d106c870b172301081d394d74be964ff9944 100644 (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));
 }