diff options
author | ericm <ericm> | 2000-04-19 23:11:23 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-04-19 23:11:23 (GMT) |
commit | 442d04988d260a0d338a53d0a81b0f17e9a5c3e8 (patch) | |
tree | 481483144079a54f8c17455ab1c9b9efa085f46e /generic/tkDecls.h | |
parent | 981af3eaf3d7d2aac6fc833575521e05a925811c (diff) | |
download | tk-442d04988d260a0d338a53d0a81b0f17e9a5c3e8.zip tk-442d04988d260a0d338a53d0a81b0f17e9a5c3e8.tar.gz tk-442d04988d260a0d338a53d0a81b0f17e9a5c3e8.tar.bz2 |
* doc/WinViewable.3:
* unix/mkLinks: Removed docs for Tk_IsViewable.
* win/tkWinDialog.c: Removed calls to Tk_IsViewable.
* generic/tkUtil.c:
* generic/tkStubInit.c:
* generic/tkDecls.h:
* generic/tkCmds.c:
* generic/tk.decls: Removed Tk_IsViewable function (it was not
actually needed).
Diffstat (limited to 'generic/tkDecls.h')
-rw-r--r-- | generic/tkDecls.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/generic/tkDecls.h b/generic/tkDecls.h index 1ad995c..79443d4 100644 --- a/generic/tkDecls.h +++ b/generic/tkDecls.h @@ -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: tkDecls.h,v 1.9 2000/04/18 02:18:32 ericm Exp $ + * RCS: @(#) $Id: tkDecls.h,v 1.10 2000/04/19 23:11:23 ericm Exp $ */ #ifndef _TKDECLS @@ -815,8 +815,6 @@ EXTERN int Tk_PostscriptStipple _ANSI_ARGS_(( /* 237 */ EXTERN double Tk_PostscriptY _ANSI_ARGS_((double y, Tk_PostscriptInfo psInfo)); -/* 238 */ -EXTERN int Tk_IsViewable _ANSI_ARGS_((Tk_Window tkwin)); typedef struct TkStubHooks { struct TkPlatStubs *tkPlatStubs; @@ -1067,7 +1065,6 @@ typedef struct TkStubs { void (*tk_PostscriptPath) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PostscriptInfo psInfo, double * coordPtr, int numPoints)); /* 235 */ int (*tk_PostscriptStipple) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_PostscriptInfo psInfo, Pixmap bitmap)); /* 236 */ double (*tk_PostscriptY) _ANSI_ARGS_((double y, Tk_PostscriptInfo psInfo)); /* 237 */ - int (*tk_IsViewable) _ANSI_ARGS_((Tk_Window tkwin)); /* 238 */ } TkStubs; #ifdef __cplusplus @@ -2030,10 +2027,6 @@ extern TkStubs *tkStubsPtr; #define Tk_PostscriptY \ (tkStubsPtr->tk_PostscriptY) /* 237 */ #endif -#ifndef Tk_IsViewable -#define Tk_IsViewable \ - (tkStubsPtr->tk_IsViewable) /* 238 */ -#endif #endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */ |