mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
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:
parent
ac103f15a7
commit
77bdf5aa27
@ -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:
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user