Implemented wxDataViewColumn for wxOSX/Cocoa

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2010-06-10 12:43:09 +00:00
parent fb0165dfff
commit f6cb92b81f
3 changed files with 25 additions and 2 deletions

View File

@@ -2750,6 +2750,17 @@ void wxDataViewColumn::SetWidth(int width)
}
}
void wxDataViewColumn::SetHidden(bool WXUNUSED(hidden))
{
// How to do that?
}
bool wxDataViewColumn::IsHidden() const
{
return true;
}
void wxDataViewColumn::SetAsSortKey(bool WXUNUSED(sort))
{
// see wxGTK native wxDataViewColumn implementation