diff options
author | jenglish <jenglish@flightlab.com> | 2012-07-02 17:45:04 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2012-07-02 17:45:04 (GMT) |
commit | 178102452144aacf3fcfef787f8db7dc588d9000 (patch) | |
tree | c0f6f46f3d226c5465e331c235f6122d73b6ac8f /win | |
parent | 8f6408487495e6e63669e391e3b44ce2e6645c81 (diff) | |
parent | 6ade6907c8825551da330908c6dec95a6de68cfc (diff) | |
download | tk-178102452144aacf3fcfef787f8db7dc588d9000.zip tk-178102452144aacf3fcfef787f8db7dc588d9000.tar.gz tk-178102452144aacf3fcfef787f8db7dc588d9000.tar.bz2 |
ttk::*: Ensure that all tables passed to Tcl_GetIndexFromObj{Struct}
are statically allocated. Caught by Michael Kirkham.
Diffstat (limited to 'win')
-rw-r--r-- | win/ttkWinXPTheme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/ttkWinXPTheme.c b/win/ttkWinXPTheme.c index af6103b..08e8a8e 100644 --- a/win/ttkWinXPTheme.c +++ b/win/ttkWinXPTheme.c @@ -1109,7 +1109,7 @@ Ttk_CreateVsapiElement( LPWSTR wname; Ttk_ElementSpec *elementSpec = &GenericElementSpec; - const char *optionStrings[] = + static const char *optionStrings[] = { "-padding","-width","-height","-margins", "-syssize", "-halfheight", "-halfwidth", NULL }; enum { O_PADDING, O_WIDTH, O_HEIGHT, O_MARGINS, O_SYSSIZE, |