]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dataview.h
Allow using socket from both wxBase and wxCore (adopting to changes from r50831)
[wxWidgets.git] / include / wx / dataview.h
index 0d07559fd5e45d077263074c76de8f52649525b5..29424624642a7f7eb7b23ed34b31aae92703da33 100644 (file)
@@ -24,6 +24,8 @@
 #include "wx/icon.h"
 #include "wx/imaglist.h"
 
+class WXDLLIMPEXP_FWD_CORE wxDataFormat;
+
 #if defined(__WXGTK20__)
     // for testing
     // #define wxUSE_GENERICDATAVIEWCTRL 1
@@ -96,7 +98,7 @@ WX_DEFINE_ARRAY(wxDataViewItem, wxDataViewItemArray);
 class WXDLLIMPEXP_ADV wxDataViewModelNotifier
 {
 public:
-    wxDataViewModelNotifier() { }
+    wxDataViewModelNotifier() { m_owner = NULL; }
     virtual ~wxDataViewModelNotifier() { m_owner = NULL; }
 
     virtual bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ) = 0;
@@ -406,7 +408,8 @@ class WXDLLIMPEXP_ADV wxDataViewIconText: public wxObject
 {
 public:
     wxDataViewIconText( const wxString &text = wxEmptyString, const wxIcon& icon = wxNullIcon )
-    { m_icon = icon; m_text = text; }
+        : m_text(text), m_icon(icon)
+    { }
     wxDataViewIconText( const wxDataViewIconText &other )
     { m_icon = other.m_icon; m_text = other.m_text; }