diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-05-31 19:56:03 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-05-31 19:56:03 (GMT) |
| commit | c1de5d2dcd88b64e758d29246627c65e59ae1d91 (patch) | |
| tree | f7c861333e5590715bf0058fbc67e0c41958fd09 /generic/tclOOInt.h | |
| parent | 52d16a98da8823c64d35a560be052bbf2fd0124a (diff) | |
| download | tcl-c1de5d2dcd88b64e758d29246627c65e59ae1d91.zip tcl-c1de5d2dcd88b64e758d29246627c65e59ae1d91.tar.gz tcl-c1de5d2dcd88b64e758d29246627c65e59ae1d91.tar.bz2 | |
Make things build (cleanly) on Win32. Thanks to Joe Mistachkin. [Patch 1980861]
Diffstat (limited to 'generic/tclOOInt.h')
| -rw-r--r-- | generic/tclOOInt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclOOInt.h b/generic/tclOOInt.h index 7c0b6a7..580ea13 100644 --- a/generic/tclOOInt.h +++ b/generic/tclOOInt.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclOOInt.h,v 1.1 2008/05/31 11:42:18 dkf Exp $ + * RCS: @(#) $Id: tclOOInt.h,v 1.2 2008/05/31 19:56:07 dkf Exp $ */ #include <tclInt.h> @@ -493,9 +493,9 @@ MODULE_SCOPE int TclOOGetSortedMethodList(Object *oPtr, int flags, const char ***stringsPtr); MODULE_SCOPE int TclOOInit(Tcl_Interp *interp); MODULE_SCOPE void TclOOInitInfo(Tcl_Interp *interp); -MODULE_SCOPE int TclOOInvokeContext(Tcl_Interp *interp, - CallContext *contextPtr, int objc, - Tcl_Obj *const *objv); +MODULE_SCOPE int TclOOInvokeContext(Tcl_Interp *const interp, + CallContext *const contextPtr, int const objc, + Tcl_Obj *const *const objv); MODULE_SCOPE void TclOONewBasicMethod(Tcl_Interp *interp, Class *clsPtr, const DeclaredClassMethod *dcm); MODULE_SCOPE Tcl_Obj * TclOOObjectName(Tcl_Interp *interp, Object *oPtr); |
