diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-17 10:57:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-17 10:57:35 (GMT) |
commit | ade22ba319d8ff4395c82135981cc073804ce97a (patch) | |
tree | 551a8431a7603d8f0d73f739344653f03f7c3a35 /generic/tk3d.c | |
parent | 3857560b944b318c14b18b5105c6e25d169bb9a6 (diff) | |
download | tk-ade22ba319d8ff4395c82135981cc073804ce97a.zip tk-ade22ba319d8ff4395c82135981cc073804ce97a.tar.gz tk-ade22ba319d8ff4395c82135981cc073804ce97a.tar.bz2 |
Lots of ANSIfying of function decls.
Also a few spots where code has been cleaned up more completely.
Diffstat (limited to 'generic/tk3d.c')
-rw-r--r-- | generic/tk3d.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tk3d.c b/generic/tk3d.c index f85d54c..cee599f 100644 --- a/generic/tk3d.c +++ b/generic/tk3d.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk3d.c,v 1.15 2005/11/04 11:52:50 dkf Exp $ + * RCS: @(#) $Id: tk3d.c,v 1.16 2005/11/17 10:57:35 dkf Exp $ */ #include "tk3d.h" @@ -189,7 +189,7 @@ Tk_Get3DBorder( { Tcl_HashEntry *hashPtr; TkBorder *borderPtr, *existingBorderPtr; - int new; + int isNew; XGCValues gcValues; XColor *bgColorPtr; TkDisplay *dispPtr; @@ -200,8 +200,8 @@ Tk_Get3DBorder( BorderInit(dispPtr); } - hashPtr = Tcl_CreateHashEntry(&dispPtr->borderTable, colorName, &new); - if (!new) { + hashPtr = Tcl_CreateHashEntry(&dispPtr->borderTable, colorName, &isNew); + if (!isNew) { existingBorderPtr = (TkBorder *) Tcl_GetHashValue(hashPtr); for (borderPtr = existingBorderPtr; borderPtr != NULL; borderPtr = borderPtr->nextPtr) { @@ -221,7 +221,7 @@ Tk_Get3DBorder( bgColorPtr = Tk_GetColor(interp, tkwin, colorName); if (bgColorPtr == NULL) { - if (new) { + if (isNew) { Tcl_DeleteHashEntry(hashPtr); } return NULL; |