| 6179 | } |
| 6180 | |
| 6181 | void Editor::CopyText ( int length, const char *text ) |
| 6182 | { |
| 6183 | SelectionText selectedText; |
| 6184 | selectedText.Copy ( text, length + 1, |
| 6185 | pdoc->dbcsCodePage, vs.styles[STYLE_DEFAULT].characterSet, false, false ); |
| 6186 | CopyToClipboard ( selectedText ); |
| 6187 | } |
| 6188 | |
| 6189 | void Editor::SetDragPosition ( SelectionPosition newPos ) |
| 6190 | { |