diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-09 21:49:44 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-09 21:49:44 (GMT) |
commit | fcf2a1194ead2168e9281bf0f670ffa770a15e68 (patch) | |
tree | eacd7bb494132f1f03510fe1e389cabfca121122 /generic/tkEntry.c | |
parent | f5014f51de2a38100606b1a17c37dfa6adeb0254 (diff) | |
download | tk-fcf2a1194ead2168e9281bf0f670ffa770a15e68.zip tk-fcf2a1194ead2168e9281bf0f670ffa770a15e68.tar.gz tk-fcf2a1194ead2168e9281bf0f670ffa770a15e68.tar.bz2 |
removed bogus comment
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r-- | generic/tkEntry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index 97f64f2..e41577e 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.51 2008/10/05 18:22:21 dkf Exp $ + * RCS: @(#) $Id: tkEntry.c,v 1.52 2008/10/09 21:49:44 dkf Exp $ */ #include "tkInt.h" @@ -4032,8 +4032,8 @@ SpinboxWidgetObjCmd( if (entryPtr->validate != VALIDATE_NONE) { entryPtr->validate = selIndex; } - /* FIXME: modification of objresult */ - Tcl_SetObjResult(interp, Tcl_NewBooleanObj((code == TCL_OK))); + + Tcl_SetObjResult(interp, Tcl_NewBooleanObj(code == TCL_OK)); break; } |