From e99c30481090eb4ceaec74c0c1b5fac89b235e7f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 17 Jul 1998 08:18:57 +0000 Subject: [PATCH] fixed compilation problems under Windows git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@283 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dynarray.h | 2 +- include/wx/fileconf.h | 1 - src/common/dynarray.cpp | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h index cd817ca091..37e106f5f2 100644 --- a/include/wx/dynarray.h +++ b/include/wx/dynarray.h @@ -125,7 +125,7 @@ protected: */ int Index(long lItem, bool bFromEnd = FALSE) const; /// search for an item using binary search in a sorted array - int Index(long lItem, CMPFUNC fnCompare); + int Index(long lItem, CMPFUNC fnCompare) const; /// add new element at the end void Add(long lItem); /// add item assuming the array is sorted with fnCompare function diff --git a/include/wx/fileconf.h b/include/wx/fileconf.h index e499328236..4de3774132 100644 --- a/include/wx/fileconf.h +++ b/include/wx/fileconf.h @@ -231,7 +231,6 @@ public: void SetLine(LineList *pLine); }; -protected: class ConfigGroup { private: diff --git a/src/common/dynarray.cpp b/src/common/dynarray.cpp index b501686ae5..7ea0930aef 100644 --- a/src/common/dynarray.cpp +++ b/src/common/dynarray.cpp @@ -169,7 +169,7 @@ int wxBaseArray::Index(long lItem, bool bFromEnd) const } // search for an item in a sorted array (binary search) -int wxBaseArray::Index(long lItem, CMPFUNC fnCompare) +int wxBaseArray::Index(long lItem, CMPFUNC fnCompare) const { uint i, lo = 0, -- 2.45.2