include fix from Juergen S

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5633 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-11-14 20:39:16 +00:00
parent ac103f15a7
commit 77bdf5aa27
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-11-14 Juergen Spitzmueller <j.spitzmueller@gmx.de>
* ControlInclude.C: fix file format masks for qt's use
2002-11-13 John Levon <levon@movementarian.org>
* Makefile.am:

View File

@ -55,15 +55,15 @@ string const ControlInclude::Browse(string const & in_name, Type in_type)
string pattern;
switch (in_type) {
case INPUT:
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents");
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents (*.tex *.lyx)");
break;
case VERBATIM:
pattern = _("*| All files ");
pattern = _("*| All files (*)");
break;
case INCLUDE:
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents");
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents (*.tex *.lyx)");
break;
}