| 525 | // CEditorView message handlers |
| 526 | |
| 527 | void CEditorView::OnInitialUpdate() { |
| 528 | CView::OnInitialUpdate(); |
| 529 | |
| 530 | // TODO: Add your specialized code here and/or call the base class |
| 531 | theApp.main_view = this; |
| 532 | |
| 533 | CWnd *wnd = GetParent(); |
| 534 | |
| 535 | wnd->Invalidate(FALSE); |
| 536 | |
| 537 | mprintf(0, "CEditorView::OnInitialUpdate.\n"); |
| 538 | } |
| 539 | |
| 540 | void CEditorView::OnSize(UINT nType, int cx, int cy) { |
| 541 | CView::OnSize(nType, cx, cy); |
nothing calls this directly
no test coverage detected