diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-09 21:49:44 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-09 21:49:44 (GMT) |
commit | 32e3e09f0b04bd6fa6c423caf4d68f6b282a1f49 (patch) | |
tree | eacd7bb494132f1f03510fe1e389cabfca121122 | |
parent | d4742b8495b0beb3f3f8dedead701fb60a96ab76 (diff) | |
download | tk-32e3e09f0b04bd6fa6c423caf4d68f6b282a1f49.zip tk-32e3e09f0b04bd6fa6c423caf4d68f6b282a1f49.tar.gz tk-32e3e09f0b04bd6fa6c423caf4d68f6b282a1f49.tar.bz2 |
removed bogus comment
-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; } |