summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.h
diff options
context:
space:
mode:
authorericm <ericm>1999-11-17 02:38:27 (GMT)
committerericm <ericm>1999-11-17 02:38:27 (GMT)
commit249bfa3b8b3e73d09d6e934b4a0cefbd0b05337f (patch)
tree2dfe007e1934d98763917d50b21ab9d420342513 /generic/tkInt.h
parent64058b81a00dcb9a607570d29205f230a623b4ae (diff)
downloadtk-249bfa3b8b3e73d09d6e934b4a0cefbd0b05337f.zip
tk-249bfa3b8b3e73d09d6e934b4a0cefbd0b05337f.tar.gz
tk-249bfa3b8b3e73d09d6e934b4a0cefbd0b05337f.tar.bz2
* generic/tkWindow.c: Changed "listbox" mapping from old-school to
new-school objectified command. * generic/tkListbox.c: Objectified listbox; added support for -listvar option. Converted internal structure to use a Tcl list object to store the data. * generic/tkInt.h: Changed reference to Tk_ListboxCmd to Tk_ListboxObjCmd.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r--generic/tkInt.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h
index e6a79e1..7e43724 100644
--- a/generic/tkInt.h
+++ b/generic/tkInt.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: $Id: tkInt.h,v 1.16 1999/10/29 03:57:57 hobbs Exp $
+ * RCS: $Id: tkInt.h,v 1.17 1999/11/17 02:38:27 ericm Exp $
*/
#ifndef _TKINT
@@ -933,8 +933,9 @@ EXTERN int Tk_ImageObjCmd _ANSI_ARGS_((ClientData clientData,
EXTERN int Tk_LabelObjCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int objc,
Tcl_Obj *CONST objv[]));
-EXTERN int Tk_ListboxCmd _ANSI_ARGS_((ClientData clientData,
- Tcl_Interp *interp, int argc, char **argv));
+EXTERN int Tk_ListboxObjCmd _ANSI_ARGS_((ClientData clientData,
+ Tcl_Interp *interp, int objc,
+ Tcl_Obj *CONST objv[]));
EXTERN int Tk_LowerCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
EXTERN int Tk_MenubuttonObjCmd _ANSI_ARGS_((ClientData clientData,