CanHideColumns should be const
This commit is contained in:
@@ -1362,7 +1362,7 @@ public:
|
|||||||
// interactive column hiding (enabled by default, works only for native header)
|
// interactive column hiding (enabled by default, works only for native header)
|
||||||
bool EnableHidingColumns( bool enable = true );
|
bool EnableHidingColumns( bool enable = true );
|
||||||
void DisableHidingColumns() { EnableHidingColumns(false); }
|
void DisableHidingColumns() { EnableHidingColumns(false); }
|
||||||
bool CanHideColumns() { return m_canHideColumns; }
|
bool CanHideColumns() const { return m_canHideColumns; }
|
||||||
|
|
||||||
// interactive resizing of grid cells (enabled by default)
|
// interactive resizing of grid cells (enabled by default)
|
||||||
void EnableDragGridSize(bool enable = true);
|
void EnableDragGridSize(bool enable = true);
|
||||||
|
Reference in New Issue
Block a user