From 6501cfee251537a0baebe03094d48ade46cdb49d Mon Sep 17 00:00:00 2001 From: hobbs Date: Thu, 11 Jul 2002 22:42:40 +0000 Subject: * win/tkWinDialog.c (Tk_ChooseDirectoryObjCmd): initialize utfTitle to NULL, add a few more notes about limitations of possible new Tk_ChooseDirectoryObjCmd function. --- ChangeLog | 6 ++++++ win/tkWinDialog.c | 13 +++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d623a82..61cb31a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-07-11 Jeff Hobbs + + * win/tkWinDialog.c (Tk_ChooseDirectoryObjCmd): initialize + utfTitle to NULL, add a few more notes about limitations of + possible new Tk_ChooseDirectoryObjCmd function. + 2002-07-11 Donal K. Fellows * tests/imgPhoto.test (imgPhoto-15.1): Added test of mem-alloc diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index e75d18b..6669b09 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.26 2002/04/12 07:18:49 hobbs Exp $ + * RCS: @(#) $Id: tkWinDialog.c,v 1.27 2002/07/11 22:42:40 hobbs Exp $ * */ @@ -1627,8 +1627,12 @@ New Behaviour: held open to allow further modification by the user. - Not sure how to implement localization of message prompts. + +- -title is really -message. ToDo: - Fix bugs. +- test to see what platforms this really works on. May require v4.71 + of shell32.dll everywhere (what is standard?). * */ int @@ -1663,11 +1667,12 @@ Tk_ChooseDirectoryObjCmd(clientData, interp, objc, objv) /* * Initialize */ - result = TCL_ERROR; - path[0] = '\0'; + result = TCL_ERROR; + path[0] = '\0'; + utfTitle = NULL; ZeroMemory(&cdCBData, sizeof(CHOOSEDIRDATA)); - cdCBData.interp = interp; + cdCBData.interp = interp; tkwin = (Tk_Window) clientData; /* -- cgit v0.12