summaryrefslogtreecommitdiffstats
path: root/generic/tclOODecls.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclOODecls.h')
-rw-r--r--generic/tclOODecls.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclOODecls.h b/generic/tclOODecls.h
index c31828e..888b474 100644
--- a/generic/tclOODecls.h
+++ b/generic/tclOODecls.h
@@ -119,7 +119,7 @@ TCLAPI Tcl_Obj * Tcl_GetObjectName(Tcl_Interp *interp,
/* Slot 29 is reserved */
/* Slot 30 is reserved */
/* 31 */
-TCLAPI void TclUnusedStubEntry(void);
+TCLAPI void TclOOUnusedStubEntry(void);
typedef struct {
const struct TclOOIntStubs *tclOOIntStubs;
@@ -160,7 +160,7 @@ typedef struct TclOOStubs {
Tcl_Obj * (*tcl_GetObjectName) (Tcl_Interp *interp, Tcl_Object object); /* 28 */
void (*reserved29)(void);
void (*reserved30)(void);
- void (*tclUnusedStubEntry) (void); /* 31 */
+ void (*tclOOUnusedStubEntry) (void); /* 31 */
} TclOOStubs;
extern const TclOOStubs *tclOOStubsPtr;
@@ -235,8 +235,8 @@ extern const TclOOStubs *tclOOStubsPtr;
(tclOOStubsPtr->tcl_GetObjectName) /* 28 */
/* Slot 29 is reserved */
/* Slot 30 is reserved */
-#define TclUnusedStubEntry \
- (tclOOStubsPtr->tclUnusedStubEntry) /* 31 */
+#define TclOOUnusedStubEntry \
+ (tclOOStubsPtr->tclOOUnusedStubEntry) /* 31 */
#endif /* defined(USE_TCLOO_STUBS) */