Be nice to eVC++ build process and don't include not existing files.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-04-27 11:33:56 +00:00
parent 5b53617d42
commit 07b6378fcb
3 changed files with 8 additions and 20 deletions

View File

@ -16,6 +16,8 @@
// headers we have to include here // headers we have to include here
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#include "wx/defs.h"
#include "wx/variant.h" #include "wx/variant.h"
typedef enum typedef enum
@ -363,20 +365,7 @@ private:
#if defined(__WXMSW__) #if defined(__WXMSW__)
#include "wx/msw/ole/access.h" #include "wx/msw/ole/access.h"
#elif defined(__WXMOTIF__)
#include "wx/generic/access.h"
#elif defined(__WXMGL__)
#include "wx/generic/access.h"
#elif defined(__WXGTK__)
#include "wx/generic/access.h"
#elif defined(__WXX11__)
#include "wx/generic/access.h"
#elif defined(__WXMAC__)
#include "wx/generic/access.h"
#elif defined(__WXPM__)
#include "wx/generic/access.h"
#endif #endif
#endif #endif
// _WX_ACCESSBASE_H_ // _WX_ACCESSBASE_H_

View File

@ -255,22 +255,22 @@ enum wxDataViewColumnSizing
class wxDataViewColumnBase: public wxObject class wxDataViewColumnBase: public wxObject
{ {
public: public:
wxDataViewColumnBase( const wxString &title, wxDataViewCell *cell, size_t model_column, wxDataViewColumnBase( const wxString &title, wxDataViewCell *cell, size_t model_column,
int fixed_width = 80, wxDataViewColumnSizing sizing = wxDATAVIEW_COL_WIDTH_FIXED, int flags = 0 ); int fixed_width = 80, wxDataViewColumnSizing sizing = wxDATAVIEW_COL_WIDTH_FIXED, int flags = 0 );
~wxDataViewColumnBase(); ~wxDataViewColumnBase();
virtual void SetTitle( const wxString &title ); virtual void SetTitle( const wxString &title );
virtual wxString GetTitle(); virtual wxString GetTitle();
wxDataViewCell* GetCell() { return m_cell; } wxDataViewCell* GetCell() { return m_cell; }
size_t GetModelColumn() { return m_model_column; } size_t GetModelColumn() { return m_model_column; }
void SetOwner( wxDataViewCtrl *owner ) { m_owner = owner; } void SetOwner( wxDataViewCtrl *owner ) { m_owner = owner; }
wxDataViewCtrl *GetOwner() { return m_owner; } wxDataViewCtrl *GetOwner() { return m_owner; }
virtual int GetWidth() = 0; virtual int GetWidth() = 0;
virtual void SetFixedWidth( int width ) = 0; virtual void SetFixedWidth( int width ) = 0;
virtual int GetFixedWidth() = 0; virtual int GetFixedWidth() = 0;
@ -325,7 +325,8 @@ protected:
#elif defined(__WXGTK20__) #elif defined(__WXGTK20__)
#include "wx/gtk/dataview.h" #include "wx/gtk/dataview.h"
#elif defined(__WXMAC__) #elif defined(__WXMAC__)
#include "wx/mac/dataview.h" // TODO
// #include "wx/mac/dataview.h"
#else #else
#include "wx/generic/dataview.h" #include "wx/generic/dataview.h"
#endif #endif

View File

@ -63,8 +63,6 @@ enum
#include "wx/msw/tbar95.h" #include "wx/msw/tbar95.h"
#elif defined(__WXWINCE__) #elif defined(__WXWINCE__)
#include "wx/msw/wince/tbarwce.h" #include "wx/msw/wince/tbarwce.h"
#elif defined(__WXMSW__)
#include "wx/msw/tbarmsw.h"
#elif defined(__WXMOTIF__) #elif defined(__WXMOTIF__)
#include "wx/motif/toolbar.h" #include "wx/motif/toolbar.h"
#elif defined(__WXGTK20__) #elif defined(__WXGTK20__)