diff options
author | fvogel <fvogelnew1@free.fr> | 2015-12-12 14:42:51 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-12-12 14:42:51 (GMT) |
commit | 7310553ebcfd9493614bbc345b30b0a747bef92d (patch) | |
tree | 5da22990e9ff0f311c6c624c0b8935bfb9eb41cd /generic | |
parent | 12fba5ace646e3d7b037ca0caa7a7c55bdcd7d63 (diff) | |
download | tk-7310553ebcfd9493614bbc345b30b0a747bef92d.zip tk-7310553ebcfd9493614bbc345b30b0a747bef92d.tar.gz tk-7310553ebcfd9493614bbc345b30b0a747bef92d.tar.bz2 |
Updated header comments of EntryValueChanged, InsertChars and DeleteChars since they now return a Tcl resultbug_1700065fff
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkEntry.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index a303bea..dd753f0 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -1999,7 +1999,8 @@ EntryComputeGeometry( * Add new characters to an entry widget. * * Results: - * None. + * A standard Tcl result. If an error occurred then an error message is + * left in the interp's result. * * Side effects: * New information gets added to entryPtr; it will be redisplayed soon, @@ -2099,7 +2100,8 @@ InsertChars( * Remove one or more characters from an entry widget. * * Results: - * None. + * A standard Tcl result. If an error occurred then an error message is + * left in the interp's result. * * Side effects: * Memory gets freed, the entry gets modified and (eventually) @@ -2216,7 +2218,8 @@ DeleteChars( * is one, and does other bookkeeping such as arranging for redisplay. * * Results: - * None. + * A standard Tcl result. If an error occurred then an error message is + * left in the interp's result. * * Side effects: * None. |