summaryrefslogtreecommitdiffstats
path: root/generic/tclOOInt.h
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-08-23 18:53:09 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-08-23 18:53:09 (GMT)
commit4f50d303e2352deed7b6020a08a095466f6306b8 (patch)
tree9dd27e42ded2cc1cc95c6bd3f4779d4c77bbabc0 /generic/tclOOInt.h
parent8079e10d030cf672bc00e73d705afe52452fae5e (diff)
downloadtcl-4f50d303e2352deed7b6020a08a095466f6306b8.zip
tcl-4f50d303e2352deed7b6020a08a095466f6306b8.tar.gz
tcl-4f50d303e2352deed7b6020a08a095466f6306b8.tar.bz2
* generic/tclBasic.c: Removed unused var; fixed function
* generic/tclOOInt.h: pointer declarations (why did gcc start * generic/tclOOMethod.c: complaining all of a sudden?) * generic/tclProc.c:
Diffstat (limited to 'generic/tclOOInt.h')
-rw-r--r--generic/tclOOInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclOOInt.h b/generic/tclOOInt.h
index 6b10a40..056091d 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.6 2008/07/31 14:43:47 msofer Exp $
+ * RCS: @(#) $Id: tclOOInt.h,v 1.7 2008/08/23 18:53:11 msofer Exp $
*/
#include <tclInt.h>
@@ -76,7 +76,7 @@ typedef struct ProcedureMethod {
ClientData clientData;
TclOO_PmCDDeleteProc deleteClientdataProc;
TclOO_PmCDCloneProc cloneClientdataProc;
- ProcErrorProc errProc; /* Replacement error handler. */
+ ProcErrorProc *errProc; /* Replacement error handler. */
TclOO_PreCallProc preCallProc;
/* Callback to allow for additional setup
* before the method executes. */