#include <grid.h>
Inheritance diagram for ProcessGridForceRedraw:
Public Member Functions | |
void | Process (NodeGrid *pGrid) |
Forces a redraw on the given grid. |
Definition at line 473 of file grid.h.
|
Forces a redraw on the given grid.
Implements ProcessGrid. Definition at line 2554 of file grid.cpp. 02555 { 02556 if (!pGrid->IsDisabled()) 02557 { 02558 // Get ptr to selected doc view 02559 DocView* pDocView = DocView::GetSelected(); 02560 02561 // If there's a selected docview, redraw! 02562 if (pDocView != NULL) 02563 pDocView->ForceRedraw(pSpread,pGrid->GetBlobBoundingRect()); 02564 } 02565 }
|