Add compilation guards.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2006-02-25 12:07:19 +00:00
parent b7e5ba8f2d
commit 8045736e4d

View File

@ -15,6 +15,10 @@
#pragma hdrstop
#endif
#include "wx/defs.h"
#if wxUSE_DATAVIEWCTRL
#include "wx/object.h"
#include "wx/dataview.h"
#include "wx/log.h"
@ -226,3 +230,4 @@ wxDataViewColumn* wxDataViewCtrlBase::GetColumn( size_t pos )
return (wxDataViewColumn*) m_cols[ pos ];
}
#endif