Fix from Juergen S

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5659 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-11-17 10:54:59 +00:00
parent 4c9d7c2da5
commit c671ab7924
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-11-15 Juergen Spitzmueller <j.spitzmueller@gmx.de>
* FileDialog.C: fix empty mask string
2002-11-17 John Levon <levon@movementarian.org>
* QLImage.C: implement monochrome, and fake grayscale

View File

@ -57,7 +57,7 @@ FileDialog::Result const FileDialog::save(string const & path,
{
string filter(mask);
if (mask.empty())
filter = _("*|All files");
filter = _("All files (*)");
LyXFileDialog dlg(path, filter, title_, private_->b1, private_->b2);
lyxerr[Debug::GUI] << "Select with path \"" << path