diff options
author | jenglish <jenglish@flightlab.com> | 2010-02-05 21:33:13 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2010-02-05 21:33:13 (GMT) |
commit | cece90e032954ae35ffb33120b3a0a01cd226b25 (patch) | |
tree | e1ddd82f0d6248b9f354176183943cbe3e82acb5 /generic/ttk/ttkTheme.c | |
parent | f21f6c00e18c6a1acd5c854f3bb6dd3430740af5 (diff) | |
download | tk-cece90e032954ae35ffb33120b3a0a01cd226b25.zip tk-cece90e032954ae35ffb33120b3a0a01cd226b25.tar.gz tk-cece90e032954ae35ffb33120b3a0a01cd226b25.tar.bz2 |
Laxative patch: Revert contravariant const qualifiers added by the
previous commit to keep codebase in sync with the Tile extension,
which must remain 8.4 compatible.
Diffstat (limited to 'generic/ttk/ttkTheme.c')
-rw-r--r-- | generic/ttk/ttkTheme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/ttk/ttkTheme.c b/generic/ttk/ttkTheme.c index d0c9174..5bf362d 100644 --- a/generic/ttk/ttkTheme.c +++ b/generic/ttk/ttkTheme.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * $Id: ttkTheme.c,v 1.21 2010/02/05 17:42:21 nijtmans Exp $ + * $Id: ttkTheme.c,v 1.22 2010/02/05 21:33:14 jenglish Exp $ */ #include <stdlib.h> @@ -1372,7 +1372,7 @@ static int StyleThemeCreateCmd( ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]) { StylePackageData *pkgPtr = clientData; - static const char *const optStrings[] = + static const char *optStrings[] = { "-parent", "-settings", NULL }; enum { OP_PARENT, OP_SETTINGS }; Ttk_Theme parentTheme = pkgPtr->defaultTheme, newTheme; |