| 690 | } |
| 691 | |
| 692 | void Editor::Redraw() |
| 693 | { |
| 694 | //Platform::DebugPrintf("Redraw all\n"); |
| 695 | PRectangle rcClient = GetClientRectangle(); |
| 696 | wMain.InvalidateRectangle ( rcClient ); |
| 697 | if ( wMargin.GetID() ) { |
| 698 | wMargin.InvalidateAll(); |
| 699 | } |
| 700 | //wMain.InvalidateAll(); |
| 701 | } |
| 702 | |
| 703 | void Editor::RedrawSelMargin ( int line, bool allAfter ) |
| 704 | { |
nothing calls this directly
no test coverage detected