Changeset 4829
- Timestamp:
- Dec 9, 2014 9:36:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
nanovis/branches/1.1/Command.cpp
r4827 r4829 98 98 }"; 99 99 100 static int lastCmdStatus; 101 100 102 bool 101 103 GetBooleanFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, bool *boolPtr) … … 2130 2132 } 2131 2133 2134 static int 2135 ImageFlushCmd(ClientData clientData, Tcl_Interp *interp, int objc, 2136 Tcl_Obj *const *objv) 2137 { 2138 lastCmdStatus = TCL_BREAK; 2139 return TCL_OK; 2140 } 2141 2132 2142 Tcl_Interp * 2133 2143 initTcl() … … 2145 2155 Tcl_CreateObjCommand(interp, "grid", GridCmd, NULL, NULL); 2146 2156 Tcl_CreateObjCommand(interp, "heightmap", HeightMapCmd, NULL, NULL); 2157 Tcl_CreateObjCommand(interp, "imgflush", ImageFlushCmd, NULL, NULL); 2147 2158 Tcl_CreateObjCommand(interp, "legend", LegendCmd, NULL, NULL); 2148 2159 Tcl_CreateObjCommand(interp, "screen", ScreenCmd, NULL, NULL);
Note: See TracChangeset
for help on using the changeset viewer.