| 926 | } |
| 927 | |
| 928 | void CFrameEditor::EnableInput() |
| 929 | { |
| 930 | // Set focus and enable input, input is disabled when focus is lost |
| 931 | SetFocus(); |
| 932 | |
| 933 | m_bInputEnable = true; |
| 934 | m_bCursor = true; |
| 935 | m_iCursorEditDigit = 0; |
| 936 | |
| 937 | SetTimer(0, 500, NULL); // Cursor timer |
| 938 | |
| 939 | InvalidateFrameData(); |
| 940 | } |
| 941 | |
| 942 | void CFrameEditor::OnEditCut() |
| 943 | { |
no outgoing calls
no test coverage detected