| 121 | } |
| 122 | |
| 123 | void CmdStrokeTextEdit::setPosition(const Point& pos, bool immediate) noexcept { |
| 124 | Q_ASSERT(!wasEverExecuted()); |
| 125 | mNewPosition = pos; |
| 126 | if (immediate) mText.setPosition(mNewPosition); |
| 127 | } |
| 128 | |
| 129 | void CmdStrokeTextEdit::translate(const Point& delta, bool immediate) noexcept { |
| 130 | Q_ASSERT(!wasEverExecuted()); |
no outgoing calls
no test coverage detected