avoid g++ 4.3 warnings about conflict between parameter and method names (closes #10843)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60772 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-05-28 09:49:20 +00:00
parent fa2b06e7b1
commit f6363458bc
2 changed files with 10 additions and 10 deletions

View File

@@ -169,19 +169,19 @@ public:
wxVector() : m_size(0), m_capacity(0), m_values(NULL) {}
wxVector(size_type size)
wxVector(size_type p_size)
: m_size(0), m_capacity(0), m_values(NULL)
{
reserve(size);
for ( size_t n = 0; n < size; n++ )
reserve(p_size);
for ( size_t n = 0; n < p_size; n++ )
push_back(value_type());
}
wxVector(size_type size, const value_type& v)
wxVector(size_type p_size, const value_type& v)
: m_size(0), m_capacity(0), m_values(NULL)
{
reserve(size);
for ( size_t n = 0; n < size; n++ )
reserve(p_size);
for ( size_t n = 0; n < p_size; n++ )
push_back(v);
}