summaryrefslogtreecommitdiffstats
path: root/generic/tkWindow.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-01-10 20:27:22 (GMT)
committernijtmans <nijtmans>2010-01-10 20:27:22 (GMT)
commitd06599e802a1f92eff177ce5fba74e66fa60afb3 (patch)
tree24942977fa3ae398e93cc98f127ba6bd8b9d46d2 /generic/tkWindow.c
parent0d5ee63431a40ebbe9d3a895d1ca2a3bb9a30cd0 (diff)
downloadtk-d06599e802a1f92eff177ce5fba74e66fa60afb3.zip
tk-d06599e802a1f92eff177ce5fba74e66fa60afb3.tar.gz
tk-d06599e802a1f92eff177ce5fba74e66fa60afb3.tar.bz2
CONSTify Tk_SetClassProcs
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r--generic/tkWindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c
index 5080cc0..6dd8165 100644
--- a/generic/tkWindow.c
+++ b/generic/tkWindow.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWindow.c,v 1.107 2010/01/06 14:58:30 dkf Exp $
+ * RCS: @(#) $Id: tkWindow.c,v 1.108 2010/01/10 20:27:23 nijtmans Exp $
*/
#include "tkInt.h"
@@ -2280,7 +2280,7 @@ Tk_SetClass(
void
Tk_SetClassProcs(
Tk_Window tkwin, /* Token for window to modify. */
- Tk_ClassProcs *procs, /* Class procs structure. */
+ const Tk_ClassProcs *procs, /* Class procs structure. */
ClientData instanceData) /* Data to be passed to class functions. */
{
register TkWindow *winPtr = (TkWindow *) tkwin;