]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/collpaneg.h
remove redundant m_buffer_size member (patch 1861348)
[wxWidgets.git] / include / wx / generic / collpaneg.h
index c40d772b6842e45296f54a8f1b7346ae34aa377f..09aa1e08b063e3c5ae23e07a80e2efa14cd486c4 100644 (file)
 #define _WX_COLLAPSABLE_PANE_H_GENERIC_
 
 // forward declared
-class WXDLLEXPORT wxButton;
-class WXDLLEXPORT wxStaticLine;
-
-// class name
-extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxCollapsiblePaneNameStr[];
+class WXDLLIMPEXP_FWD_CORE wxButton;
+class WXDLLIMPEXP_FWD_CORE wxStaticLine;
+#ifdef __WXMAC__
+class WXDLLIMPEXP_FWD_CORE wxDisclosureTriangle;
+#endif
 
 // ----------------------------------------------------------------------------
 // wxGenericCollapsiblePane
@@ -85,7 +85,11 @@ protected:
     int GetBorder() const;
 
     // child controls
+#ifdef __WXMAC__
+    wxDisclosureTriangle *m_pButton;
+#else
     wxButton *m_pButton;
+#endif
     wxStaticLine *m_pStaticLine;
     wxWindow *m_pPane;
     wxSizer *m_sz;