Introduce ABI shims for wxListCtrl column ordering functions
This way it is easier to add the functions later on without breaking ABI.
This commit is contained in:
committed by
Vadim Zeitlin
parent
e0ef3830c1
commit
797bc2c087
@@ -5162,6 +5162,31 @@ bool wxGenericListCtrl::SetColumnWidth( int col, int width )
|
||||
return true;
|
||||
}
|
||||
|
||||
// Column ordering functions
|
||||
int wxGenericListCtrl::GetColumnOrder(int col) const
|
||||
{
|
||||
// TODO: Implement this on generic port
|
||||
return col;
|
||||
}
|
||||
|
||||
int wxGenericListCtrl::GetColumnIndexFromOrder(int order) const
|
||||
{
|
||||
// TODO: Implement this on generic port
|
||||
return order;
|
||||
}
|
||||
|
||||
wxArrayInt wxGenericListCtrl::GetColumnsOrder() const
|
||||
{
|
||||
// TODO: Implement this on generic port
|
||||
return wxArrayInt();
|
||||
}
|
||||
|
||||
bool wxGenericListCtrl::SetColumnsOrder(const wxArrayInt& WXUNUSED(orders))
|
||||
{
|
||||
// TODO: Implement this on generic port
|
||||
return false;
|
||||
}
|
||||
|
||||
int wxGenericListCtrl::GetCountPerPage() const
|
||||
{
|
||||
return m_mainWin->GetCountPerPage(); // different from Windows ?
|
||||
|
Reference in New Issue
Block a user