diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-01-27 01:32:28 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-01-27 01:32:28 (GMT) |
commit | f087b767d1f08bcb412a9100956ffd2a607e20ae (patch) | |
tree | 6eecacbfca3f8d116d7362314ee23d7bad8a25e6 /macosx | |
parent | 65dacdb52a3455a69566fa223b77aaada6282798 (diff) | |
download | tk-f087b767d1f08bcb412a9100956ffd2a607e20ae.zip tk-f087b767d1f08bcb412a9100956ffd2a607e20ae.tar.gz tk-f087b767d1f08bcb412a9100956ffd2a607e20ae.tar.bz2 |
Fix conflicting types in tkMacOSXButton.c
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXButton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c index 6cb4f56..fbad20d 100644 --- a/macosx/tkMacOSXButton.c +++ b/macosx/tkMacOSXButton.c @@ -101,7 +101,7 @@ static void PulseDefaultButtonProc(ClientData clientData); * The class procedure table for the button widgets. */ -const Tk_ClassProcs tkpButtonProcs = { +Tk_ClassProcs tkpButtonProcs = { sizeof(Tk_ClassProcs), /* size */ TkButtonWorldChanged, /* worldChangedProc */ }; |