Make wxGrid::GetBatchCount() const
There is really no reason for this simple accessor not to be const.
This commit is contained in:
@@ -1235,7 +1235,7 @@ public:
|
||||
void BeginBatch() { m_batchCount++; }
|
||||
void EndBatch();
|
||||
|
||||
int GetBatchCount() { return m_batchCount; }
|
||||
int GetBatchCount() const { return m_batchCount; }
|
||||
|
||||
virtual void Refresh(bool eraseb = true, const wxRect* rect = NULL) wxOVERRIDE;
|
||||
|
||||
|
Reference in New Issue
Block a user