]> git.lyx.org Git - lyx.git/commitdiff
include fix from Juergen S
authorJohn Levon <levon@movementarian.org>
Thu, 14 Nov 2002 20:39:16 +0000 (20:39 +0000)
committerJohn Levon <levon@movementarian.org>
Thu, 14 Nov 2002 20:39:16 +0000 (20:39 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5633 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlInclude.C

index 2d9a6ac0e66b48cca4919bcda494b31105e8d619..aed2a31ef0ce68070564c9535c96b20efbc23d4a 100644 (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:
index 3bcb204b7619b6d21c2b08e244abf96738310b69..d1c8c123f20a9b58bb87aa697f7544c9230641ad 100644 (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;
        }