fix bug 895

http://bugzilla.lyx.org/show_bug.cgi?id=895

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16993 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2007-01-31 20:52:24 +00:00
parent 4851632b00
commit 28c5bb870f
2 changed files with 11 additions and 2 deletions

View File

@ -143,8 +143,14 @@ string const ControlPrefs::browsekbmap(string const & file) const
string const ControlPrefs::browsedict(string const & file) const
{
return browseFile(file, _("Choose personal dictionary"),
FileFilterList(_("*.ispell")));
if (lyxrc.use_spell_lib)
return browseFile(file,
_("Choose personal dictionary"),
FileFilterList(_("*.pws")));
else
return browseFile(file,
_("Choose personal dictionary"),
FileFilterList(_("*.ispell")));
}

View File

@ -220,6 +220,9 @@ What's new
- Rename lib/ui/std*.ui include files to *.inc so that the user is not
tempted to try them (bug 2387).
- add Aspell/Pspell's file extension for personal dictionary files
in preferences (bug 895)
* BUILD/INSTALLATION:
- Allow autoconf 2.60 and 2.61 for building.