summaryrefslogtreecommitdiffstats
path: root/generic/ttk
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2012-07-02 17:45:04 (GMT)
committerjenglish <jenglish@flightlab.com>2012-07-02 17:45:04 (GMT)
commit178102452144aacf3fcfef787f8db7dc588d9000 (patch)
treec0f6f46f3d226c5465e331c235f6122d73b6ac8f /generic/ttk
parent8f6408487495e6e63669e391e3b44ce2e6645c81 (diff)
parent6ade6907c8825551da330908c6dec95a6de68cfc (diff)
downloadtk-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 'generic/ttk')
-rw-r--r--generic/ttk/ttkImage.c2
-rw-r--r--generic/ttk/ttkPanedwindow.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/generic/ttk/ttkImage.c b/generic/ttk/ttkImage.c
index bf313a9..0de5fc0 100644
--- a/generic/ttk/ttkImage.c
+++ b/generic/ttk/ttkImage.c
@@ -314,7 +314,7 @@ Ttk_CreateImageElement(
const char *elementName,
int objc, Tcl_Obj *const objv[])
{
- const char *optionStrings[] =
+ static const char *optionStrings[] =
{ "-border","-height","-padding","-sticky","-width",NULL };
enum { O_BORDER, O_HEIGHT, O_PADDING, O_STICKY, O_WIDTH };
diff --git a/generic/ttk/ttkPanedwindow.c b/generic/ttk/ttkPanedwindow.c
index 065774e..b301372 100644
--- a/generic/ttk/ttkPanedwindow.c
+++ b/generic/ttk/ttkPanedwindow.c
@@ -713,7 +713,7 @@ static int PanedForgetCommand(
static int PanedIdentifyCommand(
void *recordPtr, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
{
- const char *whatTable[] = { "element", "sash", NULL };
+ static const char *whatTable[] = { "element", "sash", NULL };
enum { IDENTIFY_ELEMENT, IDENTIFY_SASH };
int what = IDENTIFY_SASH;
Paned *pw = recordPtr;