summaryrefslogtreecommitdiffstats
path: root/win/ttkWinXPTheme.c
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2012-07-02 17:38:52 (GMT)
committerjenglish <jenglish@flightlab.com>2012-07-02 17:38:52 (GMT)
commit6ade6907c8825551da330908c6dec95a6de68cfc (patch)
tree550fb128f4cccd9bdd93cdd422bccc660b4d02ce /win/ttkWinXPTheme.c
parentd244749081139cd68d5004e67c30a2ec6f99682e (diff)
downloadtk-6ade6907c8825551da330908c6dec95a6de68cfc.zip
tk-6ade6907c8825551da330908c6dec95a6de68cfc.tar.gz
tk-6ade6907c8825551da330908c6dec95a6de68cfc.tar.bz2
ttk::*: Ensure that all tables passed to Tcl_GetIndexFromObj{Struct}
are statically allocated. Caught by Michael Kirkham.
Diffstat (limited to 'win/ttkWinXPTheme.c')
-rw-r--r--win/ttkWinXPTheme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/ttkWinXPTheme.c b/win/ttkWinXPTheme.c
index e2f916f..fda7b04 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,