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/tkPlatDecls.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/tkPlatDecls.h')
-rw-r--r-- | generic/tkPlatDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkPlatDecls.h b/generic/tkPlatDecls.h index 057d38c..e59c014 100644 --- a/generic/tkPlatDecls.h +++ b/generic/tkPlatDecls.h @@ -82,7 +82,7 @@ EXTERN int Tk_MacOSXIsAppInFront(void); typedef struct TkPlatStubs { int magic; - const struct TkPlatStubHooks *hooks; + void *hooks; #if defined(__WIN32__) || defined(__CYGWIN__) /* WIN */ Window (*tk_AttachHWND) (Tk_Window tkwin, HWND hwnd); /* 0 */ |