From 82e547d3d6cc7c933107f890502d214a19ef70b1 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Sun, 6 Oct 2002 20:44:41 +0000 Subject: [PATCH] A couple more s/friend class wxFoo/friend class WXDLLEXPORT wxFoo/ for MinGW GCC 3.2. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/grid.h | 2 +- include/wx/generic/gridsel.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h index 3add2b3c6a..9154f8970c 100644 --- a/include/wx/generic/grid.h +++ b/include/wx/generic/grid.h @@ -1824,7 +1824,7 @@ protected: bool GetModelValues(); bool SetModelValues(); - friend class wxGridSelection; + friend class WXDLLEXPORT wxGridSelection; DECLARE_DYNAMIC_CLASS( wxGrid ) DECLARE_EVENT_TABLE() diff --git a/include/wx/generic/gridsel.h b/include/wx/generic/gridsel.h index 4645f2c142..87fc640315 100644 --- a/include/wx/generic/gridsel.h +++ b/include/wx/generic/gridsel.h @@ -82,7 +82,7 @@ private: wxGrid *m_grid; wxGrid::wxGridSelectionModes m_selectionMode; - friend class wxGrid; + friend class WXDLLEXPORT wxGrid; }; #endif // #ifdef __WXGRIDSEL_H__