attempt to work around SDK specific problems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-03-29 19:04:41 +00:00
parent 5fc01d1326
commit c2697b8719
2 changed files with 11 additions and 1 deletions

View File

@@ -157,7 +157,11 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
columnDesc.propertyDesc.propertyID = 1024;
columnDesc.propertyDesc.propertyType = kDataBrowserTextType;
columnDesc.propertyDesc.propertyFlags = kDataBrowserListViewTypeSelectColumn | kDataBrowserTableViewSelectionColumn ;
columnDesc.propertyDesc.propertyFlags =
#ifdef MAC_OS_X_VERSION_10_3
kDataBrowserListViewTypeSelectColumn |
#endif
kDataBrowserTableViewSelectionColumn ;
verify_noerr(::AddDataBrowserListViewColumn(browser, &columnDesc, kDataBrowserListViewAppendColumn) ) ;