]> git.lyx.org Git - features.git/commitdiff
Use *.* to select all files in the file selection dialog on Windows. Using shortcuts...
authorJoost Verburg <joostverburg@users.sourceforge.net>
Wed, 2 Apr 2008 12:03:47 +0000 (12:03 +0000)
committerJoost Verburg <joostverburg@users.sourceforge.net>
Wed, 2 Apr 2008 12:03:47 +0000 (12:03 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24093 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/FileFilterList.cpp

index e960502a170dc7df9aba410a1e7d512b8c7ae7b5..c35eadfe1cf6eb9f0049c2dd4bc315658af75d82 100644 (file)
@@ -99,7 +99,12 @@ FileFilterList::FileFilterList(docstring const & qt_style_filter)
        // FIXME UNICODE
        string const filter = to_utf8(qt_style_filter)
                + (qt_style_filter.empty() ? string() : ";;")
-               + to_utf8(_("All files (*)"));
+               + to_utf8(_("All Files "))
+#if defined(_WIN32)            
+               + ("(*.*)");
+#else
+               + ("(*)");
+#endif
 
        // Split data such as "TeX documents (*.tex);;LyX Documents (*.lyx)"
        // into individual filters.