diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-11-15 11:55:38 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-11-15 11:55:38 (GMT) |
commit | c41c46b3321be3cd6114797b2047365559acc2e4 (patch) | |
tree | daaa7172969e913fc93a5049865bf14fc3f8cd7d /generic/tkIntDecls.h | |
parent | 828d88379bbcfa037c121c46d713d35eeaf17640 (diff) | |
download | tk-c41c46b3321be3cd6114797b2047365559acc2e4.zip tk-c41c46b3321be3cd6114797b2047365559acc2e4.tar.gz tk-c41c46b3321be3cd6114797b2047365559acc2e4.tar.bz2 |
Simplification: don't declare struct types that are never used.
Diffstat (limited to 'generic/tkIntDecls.h')
-rw-r--r-- | generic/tkIntDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index 8d36ec0..586419c 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -549,7 +549,7 @@ EXTERN void TkDrawAngledChars(Display *display, typedef struct TkIntStubs { int magic; - const struct TkIntStubHooks *hooks; + void *hooks; TkWindow * (*tkAllocWindow) (TkDisplay *dispPtr, int screenNum, TkWindow *parentPtr); /* 0 */ void (*tkBezierPoints) (double control[], int numSteps, double *coordPtr); /* 1 */ |