diff options
author | ericm <ericm> | 2000-08-02 01:33:32 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-02 01:33:32 (GMT) |
commit | bdfa3563eabe397a3da9e5701def943cf044c85d (patch) | |
tree | f3a397163c2672f471105a39736bf0ec4c3efa73 /generic/tkInt.h | |
parent | 8f8cdccd5ae74a53f74f32b1c0b68ef6a201fcb4 (diff) | |
download | tk-bdfa3563eabe397a3da9e5701def943cf044c85d.zip tk-bdfa3563eabe397a3da9e5701def943cf044c85d.tar.gz tk-bdfa3563eabe397a3da9e5701def943cf044c85d.tar.bz2 |
* generic/tkInt.h: Replaced prototype for Tk_MessageCmd with
prototype for Tk_MessageObjCmd.
* generic/tkWindow.c: Marked message command as using the new
MessageObjCmd instead of the old MessageCmd.
* tests/message.test: Added tests for the message widget.
* generic/tkMessage.c: Obj'ified the message widget.
* 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.
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 98316d8..81e4bd1 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.25 2000/08/01 18:52:45 ericm Exp $ + * RCS: $Id: tkInt.h,v 1.26 2000/08/02 01:33:33 ericm Exp $ */ #ifndef _TKINT @@ -964,8 +964,9 @@ EXTERN int Tk_MenubuttonObjCmd _ANSI_ARGS_((ClientData clientData, EXTERN int Tk_MessageBoxObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); -EXTERN int Tk_MessageCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int argc, char **argv)); +EXTERN int Tk_MessageObjCmd _ANSI_ARGS_((ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[])); EXTERN int Tk_OptionObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); |