diff options
author | nijtmans <nijtmans> | 2008-11-27 23:26:05 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-27 23:26:05 (GMT) |
commit | 713876e1f5bca010fe3fa12da61c8fdf67cd5665 (patch) | |
tree | 20d24307a579f0fe7d3afb9b67a418e01a00c083 /generic/tkEntry.c | |
parent | a3f4e672b7776ad620f5bc519ed88a5366d0a927 (diff) | |
download | tk-713876e1f5bca010fe3fa12da61c8fdf67cd5665.zip tk-713876e1f5bca010fe3fa12da61c8fdf67cd5665.tar.gz tk-713876e1f5bca010fe3fa12da61c8fdf67cd5665.tar.bz2 |
elminate warning: unused variable 'tkwin'
Replace Tcl_SetResult(interp, NULL, ....) calls
with Tcl_ResetResult(interp) everywhere
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r-- | generic/tkEntry.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index 498b277..aae87dc 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkEntry.c,v 1.55 2008/11/08 22:52:29 dkf Exp $ + * RCS: @(#) $Id: tkEntry.c,v 1.56 2008/11/27 23:26:05 nijtmans Exp $ */ #include "tkInt.h" @@ -2528,7 +2528,7 @@ GetEntryIndex( break; case 's': if (entryPtr->selectFirst < 0) { - Tcl_SetResult(interp, NULL, TCL_STATIC); + Tcl_ResetResult(interp); Tcl_AppendResult(interp, "selection isn't in widget ", Tk_PathName(entryPtr->tkwin), NULL); return TCL_ERROR; @@ -2942,7 +2942,7 @@ EntryUpdateScrollbar( Tcl_AddErrorInfo(interp, ")"); Tcl_BackgroundError(interp); } - Tcl_SetResult(interp, NULL, TCL_STATIC); + Tcl_ResetResult(interp); Tcl_Release(interp); } @@ -3157,11 +3157,11 @@ EntryValidate( Tcl_AddErrorInfo(interp, "\nvalid boolean not returned by validation command"); Tcl_BackgroundError(interp); - Tcl_SetResult(interp, NULL, 0); + Tcl_ResetResult(interp); return TCL_ERROR; } - Tcl_SetResult(interp, NULL, 0); + Tcl_ResetResult(interp); return (bool ? TCL_OK : TCL_BREAK); } @@ -4292,7 +4292,7 @@ SpinboxInvoke( return TCL_OK; } - Tcl_SetResult(interp, NULL, 0); + Tcl_ResetResult(interp); } return TCL_OK; |