diff options
author | hobbs <hobbs> | 2003-07-18 19:51:35 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-07-18 19:51:35 (GMT) |
commit | 2f5d313e543bab3894f4059267dfa29d9ce7cad9 (patch) | |
tree | c16f71fc59fd5dce7529cdbd59d62b48fdc55c40 /win/tkWinDialog.c | |
parent | bcca5d01bf3e6dfef93906fd178b90085a216365 (diff) | |
download | tk-2f5d313e543bab3894f4059267dfa29d9ce7cad9.zip tk-2f5d313e543bab3894f4059267dfa29d9ce7cad9.tar.gz tk-2f5d313e543bab3894f4059267dfa29d9ce7cad9.tar.bz2 |
* win/tkWinDialog.c: doubled the TK_MULTI_MAX_PATH value to ~10K.
This is a short-term solution until the -multiple option is
extended. [Bug 641261]
Diffstat (limited to 'win/tkWinDialog.c')
-rw-r--r-- | win/tkWinDialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index 327d0ad..7d6c443 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinDialog.c,v 1.30 2003/01/14 01:20:55 mdejong Exp $ + * RCS: @(#) $Id: tkWinDialog.c,v 1.30.2.1 2003/07/18 19:51:35 hobbs Exp $ * */ @@ -119,10 +119,10 @@ static const struct {int type; int btnIds[3];} allowedTypes[] = { * be retrieved with tk_get*File -multiple 1. It must be allocated * on the stack, so make it large enough but not too large. -- hobbs * The data is stored as <dir>\0<file1>\0<file2>\0...<fileN>\0\0. - * MAX_PATH == 260 on Win2K/NT. + * MAX_PATH == 260 on Win2K/NT, so *40 is ~10K. */ -#define TK_MULTI_MAX_PATH (MAX_PATH*20) +#define TK_MULTI_MAX_PATH (MAX_PATH*40) /* * The following structure is used to pass information between the directory |