diff options
author | nijtmans <nijtmans> | 2010-02-05 17:42:21 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-05 17:42:21 (GMT) |
commit | f21f6c00e18c6a1acd5c854f3bb6dd3430740af5 (patch) | |
tree | ac9510cf19a9fe9e587d86587a1377661a8507a9 /generic/ttk/ttkWidget.h | |
parent | e53aee245eff6859ad19a3960e62218ccb271d48 (diff) | |
download | tk-f21f6c00e18c6a1acd5c854f3bb6dd3430740af5.zip tk-f21f6c00e18c6a1acd5c854f3bb6dd3430740af5.tar.gz tk-f21f6c00e18c6a1acd5c854f3bb6dd3430740af5.tar.bz2 |
Make the various stub tables and hook pointers const,
just as Tcl and Tk.
Make more internal tables "const"
Diffstat (limited to 'generic/ttk/ttkWidget.h')
-rw-r--r-- | generic/ttk/ttkWidget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/ttk/ttkWidget.h b/generic/ttk/ttkWidget.h index 0f86cc3..db15fd7 100644 --- a/generic/ttk/ttkWidget.h +++ b/generic/ttk/ttkWidget.h @@ -1,4 +1,4 @@ -/* $Id: ttkWidget.h,v 1.12 2010/01/31 22:50:56 jenglish Exp $ +/* $Id: ttkWidget.h,v 1.13 2010/02/05 17:42:21 nijtmans Exp $ * Copyright (c) 2003, Joe English * Helper routines for widget implementations. */ @@ -240,9 +240,9 @@ MODULE_SCOPE Tk_OptionSpec ttkCoreOptionSpecs[]; * String tables for widget resource specifications: */ -MODULE_SCOPE const char *ttkOrientStrings[]; -MODULE_SCOPE const char *ttkCompoundStrings[]; -MODULE_SCOPE const char *ttkDefaultStrings[]; +MODULE_SCOPE const char *const ttkOrientStrings[]; +MODULE_SCOPE const char *const ttkCompoundStrings[]; +MODULE_SCOPE const char *const ttkDefaultStrings[]; /* * ... other option types... |