diff options
author | nijtmans <nijtmans> | 2008-10-30 21:39:16 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-10-30 21:39:16 (GMT) |
commit | bc7cc1de3c6e12a43abe48282f8eeb413b3bb22a (patch) | |
tree | 9b240e7e0a446a742160201af095d711ba73aa70 /ChangeLog | |
parent | c1f0473e3354fd5c7471d0389e6bcd9a200ec8c7 (diff) | |
download | tk-bc7cc1de3c6e12a43abe48282f8eeb413b3bb22a.zip tk-bc7cc1de3c6e12a43abe48282f8eeb413b3bb22a.tar.gz tk-bc7cc1de3c6e12a43abe48282f8eeb413b3bb22a.tar.bz2 |
[Bug 2190619] Warnings due to Tk_SmoothMethod
name constness change.
Although dkf's solution (simply adding a type cast)
is correct as well, changing the return value (as das
suggested) has the advantage that
all Tk_OptionPrintProc implementations don't
need a type cast any more in its code. This
makes all those functions robust against
the -Wwrite-strings warning option.
Further on, the customPtr field of Tk_ConfigSpec
can be a constant, without any danger of
source incompatibility.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,14 @@ +2008-10-30 Jan Nijtmans <nijtmans@users.sf.net> + + * generic/tk.h: CONSTify return value of + * generic/tkInt.h Tk_OptionPrintProc, and customPtr + * generic/tk.decls field of Tk_ConfigSpec. + * generic/tkCanvArc.c See [Bug 2190619]: Warnings due to + * generic/tkCanvLine.c Tk_SmoothMethod name constness change + * generic/tkCanvUtil.c + * generic/tkUtil.c + * generic/tkDecls.h: (regenerated) + 2008-10-29 Joe English <jenglish@users.sourceforge.net> * generic/tkAtom.c(Tk_GetAtomName): Remove incorrect 'const' qualifier. |