diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-15 14:05:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-15 14:05:02 (GMT) |
commit | 77e6fd7e3c4a62f918f3a52cfb48d176c0d9d9a7 (patch) | |
tree | 7909d3da794f5a8919cce606754f17baba4c1930 /generic/tclOOInt.h | |
parent | 83138348a496b45f8806f1bf96d207d789bdff20 (diff) | |
download | tcl-77e6fd7e3c4a62f918f3a52cfb48d176c0d9d9a7.zip tcl-77e6fd7e3c4a62f918f3a52cfb48d176c0d9d9a7.tar.gz tcl-77e6fd7e3c4a62f918f3a52cfb48d176c0d9d9a7.tar.bz2 |
The fix for [3610404] leads to a simplification in the implementation of
forward methods.
Diffstat (limited to 'generic/tclOOInt.h')
-rw-r--r-- | generic/tclOOInt.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/generic/tclOOInt.h b/generic/tclOOInt.h index ab54964..c0e4022 100644 --- a/generic/tclOOInt.h +++ b/generic/tclOOInt.h @@ -122,12 +122,6 @@ typedef struct ForwardMethod { Tcl_Obj *prefixObj; /* The list of values to use to replace the * object and method name with. Will be a * non-empty list. */ - int fullyQualified; /* If 1, the command name is fully qualified - * and we should let the default Tcl mechanism - * handle the command lookup because it is - * more efficient. If 0, we need to do a - * specialized lookup based on the current - * object's namespace. */ } ForwardMethod; /* |