diff options
author | hobbs <hobbs> | 2002-08-08 01:43:31 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-08-08 01:43:31 (GMT) |
commit | 18eb974ba584e388dc59abc47179ef9b6a3bc92d (patch) | |
tree | bb68ed2f81eecf4624bc4c51750be05ee8c1df3f /generic | |
parent | 8951188143c30573095acce68c26d3bcf2337656 (diff) | |
download | tk-18eb974ba584e388dc59abc47179ef9b6a3bc92d.zip tk-18eb974ba584e388dc59abc47179ef9b6a3bc92d.tar.gz tk-18eb974ba584e388dc59abc47179ef9b6a3bc92d.tar.bz2 |
* generic/tkPanedWindow.c (Tk_PanedWindowObjCmd):
* library/panedwindow.tcl: changed class from PanedWindow to
Panedwindow to not conflict with existing bwidgets, but also to be
more regular with other names used in the core.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkPanedWindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkPanedWindow.c b/generic/tkPanedWindow.c index 253a626..1f5f83c 100644 --- a/generic/tkPanedWindow.c +++ b/generic/tkPanedWindow.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkPanedWindow.c,v 1.7 2002/08/06 14:38:13 dkf Exp $ + * RCS: @(#) $Id: tkPanedWindow.c,v 1.8 2002/08/08 01:43:31 hobbs Exp $ */ #include "tkPort.h" @@ -368,7 +368,7 @@ Tk_PanedWindowObjCmd(clientData, interp, objc, objv) pwOpts->slaveOpts = Tk_CreateOptionTable(interp, slaveOptionSpecs); } - Tk_SetClass(tkwin, "PanedWindow"); + Tk_SetClass(tkwin, "Panedwindow"); /* * Allocate and initialize the widget record. |