Fixed bug [ 495532 ] wxFileDialog limits multiple file load

"The wxMAXPATH constant prevents the loading of
multiple file names in a multiple selection dialog
when selecting a large number of files.

The number of selected files can easily exceed the
memory allocated to store the selected file names and
paths."

I'm increasing the buffer size to 65536 which should be adequate
for most purposes. There's apparently no way to work around the
fixed buffer size. -- JACS


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-09-22 11:36:52 +00:00
parent 7242785858
commit 91bbbdf8a6

View File

@@ -61,7 +61,7 @@
// ----------------------------------------------------------------------------
#ifdef __WIN32__
# define wxMAXPATH 4096
# define wxMAXPATH 65536
#else
# define wxMAXPATH 1024
#endif