summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-10-05 03:51:09 (GMT)
committerhobbs <hobbs>2005-10-05 03:51:09 (GMT)
commita7488342ba85d46077548e4de460c9e02935aea4 (patch)
tree7993715e33b10fbd33645e703d1c603a9d1fd946 /win
parent50259cf1dbe3cfaacfe08d6eb4d8a3a4a33d2444 (diff)
downloadtk-a7488342ba85d46077548e4de460c9e02935aea4.zip
tk-a7488342ba85d46077548e4de460c9e02935aea4.tar.gz
tk-a7488342ba85d46077548e4de460c9e02935aea4.tar.bz2
* win/tkWinDialog.c (ChooseDirectoryValidateProc): reset stored
path to "" if it doesn't exist and -mustexist is true. [Bug 1309218]
Diffstat (limited to 'win')
-rw-r--r--win/tkWinDialog.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c
index b1ae29c..c087e48 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.2.4 2004/08/20 01:14:20 hobbs Exp $
+ * RCS: @(#) $Id: tkWinDialog.c,v 1.30.2.5 2005/10/05 03:51:09 hobbs Exp $
*
*/
@@ -1954,6 +1954,7 @@ ChooseDirectoryValidateProc (
if (SetCurrentDirectory((char *)string) == 0) {
LPTSTR lpFilePart[MAX_PATH];
+
/*
* Get the full path name to the user entry,
* at this point it doesn't exist so see if
@@ -1967,6 +1968,7 @@ ChooseDirectoryValidateProc (
*/
wsprintf(selDir, TEXT("Directory '%.200s' does not exist,\nplease select or enter an existing directory."), chooseDirSharedData->utfRetDir);
MessageBox(NULL, selDir, NULL, MB_ICONEXCLAMATION|MB_OK);
+ chooseDirSharedData->utfRetDir[0] = '\0';
return 1;
}
} else {