| 1154 | } |
| 1155 | |
| 1156 | void CodeEntry::MoveCaret(int pos, bool allowSelection /*=true*/) |
| 1157 | { |
| 1158 | mCaretPosition = pos; |
| 1159 | if (!allowSelection || !(GetKeyModifiers() & kModifier_Shift)) |
| 1160 | mCaretPosition2 = mCaretPosition; |
| 1161 | mCaretBlink = true; |
| 1162 | mCaretBlinkTimer = 0; |
| 1163 | } |
| 1164 | |
| 1165 | void CodeEntry::MoveCaretToStart() |
| 1166 | { |
nothing calls this directly
no test coverage detected