summaryrefslogtreecommitdiffstats
path: root/generic/tclOO.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2010-03-05 15:32:15 (GMT)
committerdkf <dkf@noemail.net>2010-03-05 15:32:15 (GMT)
commit10e3b50d34de681954c091886361cc4daf4cc5a2 (patch)
tree0afd42507571f5dd5c5bb33e27ecef34ae35c9d8 /generic/tclOO.c
parent0beea22f470575ca4033d1d218b40cac85372822 (diff)
downloadtcl-10e3b50d34de681954c091886361cc4daf4cc5a2.zip
tcl-10e3b50d34de681954c091886361cc4daf4cc5a2.tar.gz
tcl-10e3b50d34de681954c091886361cc4daf4cc5a2.tar.bz2
[Patch 2961556]: Change TclOO to use the same style of function typedefs as
Tcl, as this is about the last chance to get this right. FossilOrigin-Name: 6723a5d58cf061918d17b16c9d273719638c01a4
Diffstat (limited to 'generic/tclOO.c')
-rw-r--r--generic/tclOO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOO.c b/generic/tclOO.c
index 905626a..820fee0 100644
--- a/generic/tclOO.c
+++ b/generic/tclOO.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOO.c,v 1.35 2010/03/05 14:34:04 dkf Exp $
+ * RCS: @(#) $Id: tclOO.c,v 1.36 2010/03/05 15:32:16 dkf Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -2702,7 +2702,7 @@ Tcl_GetClassAsObject(
return (Tcl_Object) ((Class *)clazz)->thisPtr;
}
-Tcl_ObjectMapMethodNameProc
+Tcl_ObjectMapMethodNameProc *
Tcl_ObjectGetMethodNameMapper(
Tcl_Object object)
{
@@ -2712,7 +2712,7 @@ Tcl_ObjectGetMethodNameMapper(
void
Tcl_ObjectSetMethodNameMapper(
Tcl_Object object,
- Tcl_ObjectMapMethodNameProc mapMethodNameProc)
+ Tcl_ObjectMapMethodNameProc *mapMethodNameProc)
{
((Object *) object)->mapMethodNameProc = mapMethodNameProc;
}