no changes, just removed the unnecessary wxGrid:: qualifiers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f1ff7df032
commit
801a964104
@ -1108,16 +1108,18 @@ public:
|
|||||||
|
|
||||||
virtual ~wxGrid();
|
virtual ~wxGrid();
|
||||||
|
|
||||||
enum wxGridSelectionModes {wxGridSelectCells,
|
enum wxGridSelectionModes
|
||||||
wxGridSelectRows,
|
{
|
||||||
wxGridSelectColumns};
|
wxGridSelectCells,
|
||||||
|
wxGridSelectRows,
|
||||||
|
wxGridSelectColumns
|
||||||
|
};
|
||||||
|
|
||||||
bool CreateGrid( int numRows, int numCols,
|
bool CreateGrid( int numRows, int numCols,
|
||||||
wxGrid::wxGridSelectionModes selmode =
|
wxGridSelectionModes selmode = wxGridSelectCells );
|
||||||
wxGrid::wxGridSelectCells );
|
|
||||||
|
|
||||||
void SetSelectionMode(wxGrid::wxGridSelectionModes selmode);
|
void SetSelectionMode(wxGridSelectionModes selmode);
|
||||||
wxGrid::wxGridSelectionModes GetSelectionMode() const;
|
wxGridSelectionModes GetSelectionMode() const;
|
||||||
|
|
||||||
// ------ grid dimensions
|
// ------ grid dimensions
|
||||||
//
|
//
|
||||||
@ -1147,8 +1149,7 @@ public:
|
|||||||
|
|
||||||
wxGridTableBase * GetTable() const { return m_table; }
|
wxGridTableBase * GetTable() const { return m_table; }
|
||||||
bool SetTable( wxGridTableBase *table, bool takeOwnership = false,
|
bool SetTable( wxGridTableBase *table, bool takeOwnership = false,
|
||||||
wxGrid::wxGridSelectionModes selmode =
|
wxGridSelectionModes selmode = wxGridSelectCells );
|
||||||
wxGrid::wxGridSelectCells );
|
|
||||||
|
|
||||||
void ClearGrid();
|
void ClearGrid();
|
||||||
bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels = true );
|
bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels = true );
|
||||||
|
Loading…
Reference in New Issue
Block a user