]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dataview.h
made GetRowCount() return size_t to avoid signed/unsigned warnings
[wxWidgets.git] / include / wx / dataview.h
index aa9143a697b15f5600bdd06c48478248dd29428d..f6756133b1b54cd9d692299832008c1f72a4bd6c 100644 (file)
@@ -255,22 +255,22 @@ enum wxDataViewColumnSizing
 class wxDataViewColumnBase: public wxObject
 {
 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 );
     ~wxDataViewColumnBase();
 
     virtual void SetTitle( const wxString &title );
     virtual wxString GetTitle();
-    
+
     wxDataViewCell* GetCell()               { return m_cell; }
 
     size_t GetModelColumn()                 { return m_model_column; }
 
     void SetOwner( wxDataViewCtrl *owner )  { m_owner = owner; }
     wxDataViewCtrl *GetOwner()              { return m_owner; }
-    
+
     virtual int GetWidth() = 0;
-    
+
     virtual void SetFixedWidth( int width ) = 0;
     virtual int GetFixedWidth() = 0;
 
@@ -325,7 +325,8 @@ protected:
 #elif defined(__WXGTK20__)
     #include "wx/gtk/dataview.h"
 #elif defined(__WXMAC__)
-    #include "wx/mac/dataview.h"
+    // TODO
+    // #include "wx/mac/dataview.h"
 #else
     #include "wx/generic/dataview.h"
 #endif