diff options
author | ericm <ericm> | 2000-08-01 18:52:44 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-01 18:52:44 (GMT) |
commit | 8f8cdccd5ae74a53f74f32b1c0b68ef6a201fcb4 (patch) | |
tree | 3471ab8e79e55e871c50d71388c67f6f464335b9 /generic/tkInt.h | |
parent | 8635c0d7f9be9de36520f329efdcd09c3c61d47e (diff) | |
download | tk-8f8cdccd5ae74a53f74f32b1c0b68ef6a201fcb4.zip tk-8f8cdccd5ae74a53f74f32b1c0b68ef6a201fcb4.tar.gz tk-8f8cdccd5ae74a53f74f32b1c0b68ef6a201fcb4.tar.bz2 |
* generic/tkInt.h: Removed prototype for Tk_ClipboardCmd, added
prototype for Tk_ClipboardObjCmd.
* generic/tkWindow.c: Updated function pointers for clipboard
command to use Tcl_Obj version.
* tests/clipboard.test: Updated tests to expect standard error
messages.
* generic/tkClipboard.c (Tk_ClipboardObjCmd): Obj'ified
Tk_ClipboardCmd -> Tk_ClipboardObjCmd.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index bf85dcb..98316d8 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.24 2000/05/29 01:43:14 hobbs Exp $ + * RCS: $Id: tkInt.h,v 1.25 2000/08/01 18:52:45 ericm Exp $ */ #ifndef _TKINT @@ -904,8 +904,9 @@ EXTERN int Tk_CanvasObjCmd _ANSI_ARGS_((ClientData clientData, EXTERN int Tk_CheckbuttonObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); -EXTERN int Tk_ClipboardCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int argc, char **argv)); +EXTERN int Tk_ClipboardObjCmd _ANSI_ARGS_(( + ClientData clientData, Tcl_Interp *interp, + int objc, Tcl_Obj *CONST objv[])); EXTERN int Tk_ChooseColorObjCmd _ANSI_ARGS_(( ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); |