(svn r17673) -Codechange: make InvalidateThisWindowData a function of the window class
This commit is contained in:
@@ -634,6 +634,16 @@ public:
|
||||
void SetDirty() const;
|
||||
void ReInit();
|
||||
|
||||
/**
|
||||
* Mark this window's data as invalid (in need of re-computing)
|
||||
* @param data The data to invalidate with
|
||||
*/
|
||||
void InvalidateData(int data = 0)
|
||||
{
|
||||
this->SetDirty();
|
||||
this->OnInvalidateData(data);
|
||||
}
|
||||
|
||||
/*** Event handling ***/
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user