| 64 | void QiInterpreter::setLastPos(int x, int y) |
| 65 | { |
| 66 | macro.script_interpreter.setValue(QiScriptInterpreter::var_cur_last_x, x); |
| 67 | macro.script_interpreter.setValue(QiScriptInterpreter::var_cur_last_y, y); |
| 68 | POINT p = wndInput ? QiCvt::WP_RtA(POINT({ x, y }), wndInput->wnd, macro.range) : QiCvt::SP_RtA(POINT({ x, y }), macro.range); |
| 69 | macro.script_interpreter.setValue(QiScriptInterpreter::var_cur_last_ax, p.x); |
| 70 | macro.script_interpreter.setValue(QiScriptInterpreter::var_cur_last_ay, p.y); |
| 71 | Qi::widget.varViewReload(); |
| 72 | } |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected