From: Mattia Barbon Date: Mon, 29 Sep 2003 15:18:35 +0000 (+0000) Subject: (Blind) compilation fix for Sun compiler. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c58cff9a198022095db8f229e430f6ac73907163 (Blind) compilation fix for Sun compiler. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/HelpGen/src/HelpGen.cpp b/utils/HelpGen/src/HelpGen.cpp index fdde4c0c5f..9ceff9f071 100644 --- a/utils/HelpGen/src/HelpGen.cpp +++ b/utils/HelpGen/src/HelpGen.cpp @@ -260,8 +260,10 @@ protected: IgnoreListEntry *second); // for efficiency, let's sort it +public: // FIXME: macro requires it WX_DEFINE_SORTED_ARRAY(IgnoreListEntry *, ArrayNamesToIgnore); +protected: ArrayNamesToIgnore m_ignore; private: @@ -437,6 +439,8 @@ protected: wxString m_type; }; + friend class ParamInfo; // for access to TypeInfo + // info abotu a function parameter class ParamInfo { @@ -458,6 +462,7 @@ protected: wxString m_value; // default value }; +public: // FIXME: macro requires it WX_DEFINE_ARRAY(ParamInfo *, ArrayParamInfo); // info about a function @@ -503,6 +508,7 @@ protected: WX_DEFINE_ARRAY(MethodInfo *, ArrayMethodInfo); WX_DEFINE_ARRAY(ArrayMethodInfo *, ArrayMethodInfos); +private: // first array contains the names of all classes we found, the second has a // pointer to the array of methods of the given class at the same index as // the class name appears in m_classes @@ -2179,6 +2185,9 @@ static const wxString GetVersionString() /* $Log$ + Revision 1.26 2003/09/29 15:18:35 MBN + (Blind) compilation fix for Sun compiler. + Revision 1.25 2003/09/03 17:39:27 MBN Compilation fixes.