summaryrefslogtreecommitdiffstats
path: root/generic/ttk/ttkNotebook.c
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2010-02-05 21:33:13 (GMT)
committerjenglish <jenglish@flightlab.com>2010-02-05 21:33:13 (GMT)
commitcece90e032954ae35ffb33120b3a0a01cd226b25 (patch)
treee1ddd82f0d6248b9f354176183943cbe3e82acb5 /generic/ttk/ttkNotebook.c
parentf21f6c00e18c6a1acd5c854f3bb6dd3430740af5 (diff)
downloadtk-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/ttkNotebook.c')
-rw-r--r--generic/ttk/ttkNotebook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/ttk/ttkNotebook.c b/generic/ttk/ttkNotebook.c
index e6fdace..9c4d38f 100644
--- a/generic/ttk/ttkNotebook.c
+++ b/generic/ttk/ttkNotebook.c
@@ -1,4 +1,4 @@
-/* $Id: ttkNotebook.c,v 1.24 2010/02/05 17:42:21 nijtmans Exp $
+/* $Id: ttkNotebook.c,v 1.25 2010/02/05 21:33:14 jenglish Exp $
* Copyright (c) 2004, Joe English
*/
@@ -1046,7 +1046,7 @@ static int NotebookHideCommand(
static int NotebookIdentifyCommand(
void *recordPtr, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
{
- static const char *const whatTable[] = { "element", "tab", NULL };
+ static const char *whatTable[] = { "element", "tab", NULL };
enum { IDENTIFY_ELEMENT, IDENTIFY_TAB };
int what = IDENTIFY_ELEMENT;
Notebook *nb = recordPtr;