summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.h
diff options
context:
space:
mode:
authorericm <ericm>2000-08-07 21:49:15 (GMT)
committerericm <ericm>2000-08-07 21:49:15 (GMT)
commitf8f2b7eabba7d0eb1f588b09bbc9c4c0521f21ef (patch)
treea551a35deb26a51e03dd25d179cef33971158fcf /generic/tkInt.h
parent123abb82c44a1c5eaaa8c21cf24b24f251077a48 (diff)
downloadtk-f8f2b7eabba7d0eb1f588b09bbc9c4c0521f21ef.zip
tk-f8f2b7eabba7d0eb1f588b09bbc9c4c0521f21ef.tar.gz
tk-f8f2b7eabba7d0eb1f588b09bbc9c4c0521f21ef.tar.bz2
* generic/tkWindow.c: Updated [selection] command entry to use
new Tcl_Obj interface. * generic/tkInt.h: Replaced Tk_SelectionCmd prototype with Tk_SelectionObjCmd prototype. * tests/select.test: Updated test suite to recognize standardized error messages. * generic/tkSelect.c (Tk_SelectionObjCmd): Tcl_Obj'ified [selection] command.
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 5482f9d..38f36ef 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.31 2000/08/04 00:46:33 ericm Exp $
+ * RCS: $Id: tkInt.h,v 1.32 2000/08/07 21:49:16 ericm Exp $
*/
#ifndef _TKINT
@@ -991,8 +991,9 @@ EXTERN int Tk_ScaleObjCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Obj *CONST objv[]));
EXTERN int Tk_ScrollbarCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
-EXTERN int Tk_SelectionCmd _ANSI_ARGS_((ClientData clientData,
- Tcl_Interp *interp, int argc, char **argv));
+EXTERN int Tk_SelectionObjCmd _ANSI_ARGS_((ClientData clientData,
+ Tcl_Interp *interp, int objc,
+ Tcl_Obj *CONST objv[]));
EXTERN int Tk_SendCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
EXTERN int Tk_SendObjCmd _ANSI_ARGS_((ClientData clientData,