summaryrefslogtreecommitdiffstats
path: root/src/bltOp.C
diff options
context:
space:
mode:
authorjoye <joye>2014-04-23 19:33:58 (GMT)
committerjoye <joye>2014-04-23 19:33:58 (GMT)
commit6e381380d14d3ee0fbc4caecc53442f49cb5e101 (patch)
tree6972755e135983b2a946cc87001bc53b11283139 /src/bltOp.C
parent3d6f1d5636fd4fb4acc254dd3fbcde448228e0aa (diff)
downloadblt-6e381380d14d3ee0fbc4caecc53442f49cb5e101.zip
blt-6e381380d14d3ee0fbc4caecc53442f49cb5e101.tar.gz
blt-6e381380d14d3ee0fbc4caecc53442f49cb5e101.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltOp.C')
-rw-r--r--src/bltOp.C25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/bltOp.C b/src/bltOp.C
index 0f56a0e..429e8f9 100644
--- a/src/bltOp.C
+++ b/src/bltOp.C
@@ -33,31 +33,6 @@ extern "C" {
#include "bltOp.h"
};
-#include <tk.h>
-#ifdef USE_TK_STUBS
-#include <tkInt.h>
-#endif
-
-int BltInvokeEnsemble(const TkEnsemble* ensemble, int cmdIndex,
- void* clientData, Tcl_Interp* interp,
- int objc, Tcl_Obj* const objv[])
-{
- while (cmdIndex < objc) {
- int index;
- if (Tcl_GetIndexFromObjStruct(interp, objv[cmdIndex], ensemble, sizeof(ensemble[0]), "command", 0, &index) != TCL_OK)
- return TCL_ERROR;
-
- if (ensemble[index].proc)
- return ensemble[index].proc(clientData, interp, objc, objv);
-
- ensemble = ensemble[index].subensemble;
- ++cmdIndex;
- }
-
- Tcl_WrongNumArgs(interp, cmdIndex, objv, "option ?arg ...?");
- return TCL_ERROR;
-}
-
static int BinaryOpSearch(Blt_OpSpec *specs, int nSpecs,
const char *string, int length)
{