]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dataview.h
another 64 bit fix: make SendMsg() return wxIntPtr instead of long too
[wxWidgets.git] / include / wx / dataview.h
index f185c94c931874c331a2b3e2ed623529ad47bf1d..6f3d54db185bd66805010f79c7842e50d8f1f92a 100644 (file)
@@ -478,6 +478,7 @@ public:
         : m_text(text), m_icon(icon)
     { }
     wxDataViewIconText( const wxDataViewIconText &other )
+        : wxObject()
     { m_icon = other.m_icon; m_text = other.m_text; }
 
     void SetText( const wxString &text ) { m_text = text; }
@@ -697,6 +698,7 @@ public:
 
 
     virtual bool PrependColumn( wxDataViewColumn *col );
+    virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col );
     virtual bool AppendColumn( wxDataViewColumn *col );
 
     virtual unsigned int GetColumnCount() const = 0;
@@ -859,7 +861,7 @@ typedef void (wxEvtHandler::*wxDataViewEventFunction)(wxDataViewEvent&);
 #elif defined(__WXGTK20__)
     #include "wx/gtk/dataview.h"
 #elif defined(__WXMAC__)
-    #include "wx/mac/dataview.h"
+    #include "wx/osx/dataview.h"
 #else
     #include "wx/generic/dataview.h"
 #endif