]> git.saurik.com Git - wxWidgets.git/commitdiff
Added GetListView accessor
authorRobin Dunn <robin@alldunn.com>
Fri, 10 Sep 2004 20:01:02 +0000 (20:01 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 10 Sep 2004 20:01:02 +0000 (20:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29080 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/listbook.h
wxPython/src/_notebook.i

index a9120755025686ad752f2bbca89cb992b42601c3..136c2e879c13c142551161c05481e2f7627a12f3 100644 (file)
@@ -111,6 +111,8 @@ public:
 
     virtual bool DeleteAllPages();
 
+    wxListView* GetListView() { return m_list; }
+
 protected:
     virtual wxWindow *DoRemovePage(size_t page);
 
index e058b6e9bf0ed439abdba462fd5d3aacf81463c0..db05752cf2e2efcc2836566dc76adbaa9d7abff3 100644 (file)
@@ -321,6 +321,7 @@ public:
     // returns True if we have wxLB_TOP or wxLB_BOTTOM style
     bool IsVertical() const;
 
+    wxListView* GetListView();    
 };