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 | 288ad484e12428120ca1d8ba72750eb66ed9df44 (patch) | |
tree | daaa7172969e913fc93a5049865bf14fc3f8cd7d /generic/tkIntPlatDecls.h | |
parent | ed064e742e36ba2e1783c612611bc825ce79b094 (diff) | |
download | tk-288ad484e12428120ca1d8ba72750eb66ed9df44.zip tk-288ad484e12428120ca1d8ba72750eb66ed9df44.tar.gz tk-288ad484e12428120ca1d8ba72750eb66ed9df44.tar.bz2 |
Simplification: don't declare struct types that are never used.
Diffstat (limited to 'generic/tkIntPlatDecls.h')
-rw-r--r-- | generic/tkIntPlatDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkIntPlatDecls.h b/generic/tkIntPlatDecls.h index e2528d8..d6d136e 100644 --- a/generic/tkIntPlatDecls.h +++ b/generic/tkIntPlatDecls.h @@ -285,7 +285,7 @@ EXTERN int TkpTestsendCmd(ClientData clientData, typedef struct TkIntPlatStubs { int magic; - const struct TkIntPlatStubHooks *hooks; + void *hooks; #if defined(__WIN32__) || defined(__CYGWIN__) /* WIN */ char * (*tkAlignImageData) (XImage *image, int alignment, int bitOrder); /* 0 */ |