]> git.lyx.org Git - lyx.git/commitdiff
Fix from Juergen S
authorJohn Levon <levon@movementarian.org>
Sun, 17 Nov 2002 10:54:59 +0000 (10:54 +0000)
committerJohn Levon <levon@movementarian.org>
Sun, 17 Nov 2002 10:54:59 +0000 (10:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5659 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/FileDialog.C

index 4c7c8af0f12ca34935640d2e10863b180b0ed4f4..bbe23aa462829c6546fc2cce32a9ac5f886755f4 100644 (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
index e3fbc5ffdb2076c63aafc9c7515bd91a7348534f..840d79bcd87fd5acd8f8bffa9c35de4b8349bef4 100644 (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