mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
4c9d7c2da5
commit
c671ab7924
@ -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>
|
2002-11-17 John Levon <levon@movementarian.org>
|
||||||
|
|
||||||
* QLImage.C: implement monochrome, and fake grayscale
|
* QLImage.C: implement monochrome, and fake grayscale
|
||||||
|
@ -57,7 +57,7 @@ FileDialog::Result const FileDialog::save(string const & path,
|
|||||||
{
|
{
|
||||||
string filter(mask);
|
string filter(mask);
|
||||||
if (mask.empty())
|
if (mask.empty())
|
||||||
filter = _("*|All files");
|
filter = _("All files (*)");
|
||||||
|
|
||||||
LyXFileDialog dlg(path, filter, title_, private_->b1, private_->b2);
|
LyXFileDialog dlg(path, filter, title_, private_->b1, private_->b2);
|
||||||
lyxerr[Debug::GUI] << "Select with path \"" << path
|
lyxerr[Debug::GUI] << "Select with path \"" << path
|
||||||
|
Loading…
Reference in New Issue
Block a user