diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 11:55:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 11:55:38 (GMT) |
commit | e5e23287964ebcb1aa7573cab148f61b0c95e60c (patch) | |
tree | daaa7172969e913fc93a5049865bf14fc3f8cd7d /generic/tkIntDecls.h | |
parent | e6b1227197ceae9a613a6b8e0866e592407bff97 (diff) | |
download | tk-e5e23287964ebcb1aa7573cab148f61b0c95e60c.zip tk-e5e23287964ebcb1aa7573cab148f61b0c95e60c.tar.gz tk-e5e23287964ebcb1aa7573cab148f61b0c95e60c.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 */ |