Don't use export/visibility attributes in typedefs

This commit is contained in:
Artur Wieczorek
2019-07-12 19:20:30 +02:00
parent 6898abf8d6
commit 050d608bcf

View File

@@ -267,8 +267,8 @@ public:
// Preferable way to iterate through contents of wxPropertyGrid, // Preferable way to iterate through contents of wxPropertyGrid,
// wxPropertyGridManager, and wxPropertyGridPage. // wxPropertyGridManager, and wxPropertyGridPage.
// See wxPropertyGridInterface::GetIterator() for more information about usage. // See wxPropertyGridInterface::GetIterator() for more information about usage.
typedef WXDLLIMPEXP_PROPGRID wxPGIterator<wxPGProperty, wxPropertyGridPageState> wxPropertyGridIterator; typedef wxPGIterator<wxPGProperty, wxPropertyGridPageState> wxPropertyGridIterator;
typedef WXDLLIMPEXP_PROPGRID wxPGIterator<const wxPGProperty, const wxPropertyGridPageState> wxPropertyGridConstIterator; typedef wxPGIterator<const wxPGProperty, const wxPropertyGridPageState> wxPropertyGridConstIterator;
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------