Re-added corrupt binary files; small change to filefn.cpp for Cygwin.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1213 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
BIN
include/wx/msw/child.ico
Normal file
BIN
include/wx/msw/child.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
BIN
include/wx/msw/mdi.ico
Normal file
BIN
include/wx/msw/mdi.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
BIN
include/wx/msw/std.ico
Normal file
BIN
include/wx/msw/std.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
BIN
samples/internat/internat.mo
Normal file
BIN
samples/internat/internat.mo
Normal file
Binary file not shown.
BIN
samples/internat/wxstd.mo
Normal file
BIN
samples/internat/wxstd.mo
Normal file
Binary file not shown.
BIN
samples/png/julian.png
Normal file
BIN
samples/png/julian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
BIN
samples/png/paint.png
Normal file
BIN
samples/png/paint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 950 B |
BIN
samples/png/paint16.png
Normal file
BIN
samples/png/paint16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 236 B |
@@ -70,7 +70,8 @@
|
||||
#endif
|
||||
|
||||
#include "wx/setup.h"
|
||||
#ifdef HAVE_FNMATCH_H
|
||||
|
||||
#if defined(HAVE_FNMATCH_H) || defined(__GNUWIN32__)
|
||||
#include "fnmatch.h"
|
||||
#endif
|
||||
|
||||
@@ -1404,7 +1405,8 @@ bool wxIsWild( const wxString& pattern )
|
||||
};
|
||||
|
||||
bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
|
||||
#ifdef HAVE_FNMATCH_H
|
||||
|
||||
#if defined(HAVE_FNMATCH_H) || defined(__GNUWIN32__)
|
||||
{
|
||||
if(dot_special)
|
||||
return fnmatch(pat.c_str(), text.c_str(), FNM_PERIOD) == 0;
|
||||
|
Reference in New Issue
Block a user