summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-04-20 13:08:25 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-04-20 13:08:25 (GMT)
commitfd636b80ebd519e891807305cf5c22f69a03edd6 (patch)
treea307fbe160439173f7b28cc6fb4b6f2c7b005db3
parent48618f68cf19963ba025756c77672298c47b804c (diff)
downloadtk-fd636b80ebd519e891807305cf5c22f69a03edd6.zip
tk-fd636b80ebd519e891807305cf5c22f69a03edd6.tar.gz
tk-fd636b80ebd519e891807305cf5c22f69a03edd6.tar.bz2
* generic/tkWindow.c (commands): Ensure that all descriptions of
commands created by Tk are correct.
-rw-r--r--ChangeLog22
-rw-r--r--generic/tkWindow.c2
2 files changed, 14 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 0961552..e5b5ff3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,23 +1,27 @@
+2012-04-20 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tkWindow.c (commands): Ensure that all descriptions of
+ commands created by Tk are correct.
+
2012-04-20 Jan Nijtmans <nijtmans@users.sf.net>
- * generic/tk.tcl: Use vroot size in stead of screen size for
- clipping window coordinates in ::tk::PlaceWindow.
- * generic/dialog.tcl: Use ::tk::PlaceWindow in dialog.tcl, in
- stead of dumplicating the code there.
- (harmless part of [Bug 533519])
+ * generic/tk.tcl: Use vroot size in stead of screen size for clipping
+ window coordinates in ::tk::PlaceWindow.
+ * generic/dialog.tcl: Use ::tk::PlaceWindow in dialog.tcl, instead of
+ dumplicating the code there. (harmless part of [Bug 533519])
2012-04-13 Jan Nijtmans <nijtmans@users.sf.net>
- * win/rules.vc: [Bug 3517448] TclKit build fails (unresolved
+ * win/rules.vc: [Bug 3517448]: TclKit build fails (unresolved
__strtoi64)
2012-04-07 Jan Nijtmans <nijtmans@users.sf.net>
- * generic/tkBind.c: [Bug 3176239] control-MouseWheel causes segv
+ * generic/tkBind.c: [Bug 3176239]: control-MouseWheel causes segv
2012-03-30 Jan Nijtmans <nijtmans@users.sf.net>
- * unix/tcl.m4: [Bug 3511806] Compiler checks too early
+ * unix/tcl.m4: [Bug 3511806]: Compiler checks too early
* unix/configure.in: This change allows to build the cygwin
* unix/configure and mingw32 ports of Tcl/Tk to build
* win/tcl.m4: out-of-the-box using a native or cross-
@@ -26,7 +30,7 @@
2012-03-21 Jan Nijtmans <nijtmans@users.sf.net>
- * generic/tkColor.c: [Bug 2809525] Abort on overlong color name.
+ * generic/tkColor.c: [Bug 2809525]: Abort on overlong color name.
* unix/tkUnixColor.c:
2012-03-18 Jan Nijtmans <nijtmans@users.sf.net>
diff --git a/generic/tkWindow.c b/generic/tkWindow.c
index 250898c..40cf462 100644
--- a/generic/tkWindow.c
+++ b/generic/tkWindow.c
@@ -184,7 +184,7 @@ static const TkCmd commands[] = {
#if defined(__WIN32__) || defined(MAC_OSX_TK)
{"tk_chooseColor", NULL, Tk_ChooseColorObjCmd, NULL, PASSMAINWINDOW},
- {"tk_chooseDirectory", NULL, Tk_ChooseDirectoryObjCmd,NULL, 0, 1},
+ {"tk_chooseDirectory", NULL, Tk_ChooseDirectoryObjCmd,NULL,PASSMAINWINDOW},
{"tk_getOpenFile", NULL, Tk_GetOpenFileObjCmd, NULL, PASSMAINWINDOW},
{"tk_getSaveFile", NULL, Tk_GetSaveFileObjCmd, NULL, PASSMAINWINDOW},
{"tk_messageBox", NULL, Tk_MessageBoxObjCmd, NULL, PASSMAINWINDOW},