Don't over promise in wxItemContainer documentation
It only accepts std::vector<wxString>, not std::vector<T> for any type convertible to wxString as both the documentation and the code misleadingly claimed.
This commit is contained in:
@@ -479,9 +479,8 @@ public:
|
||||
}
|
||||
|
||||
#if wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
// construct an adapter from a vector of strings (of any type)
|
||||
template <class T>
|
||||
wxArrayStringsAdapter(const std::vector<T>& strings)
|
||||
// construct an adapter from a vector of strings
|
||||
wxArrayStringsAdapter(const std::vector<wxString>& strings)
|
||||
: m_type(wxSTRING_POINTER), m_size(strings.size())
|
||||
{
|
||||
m_data.ptr = &strings[0];
|
||||
|
@@ -221,8 +221,7 @@ public:
|
||||
{ return AppendItems(wxArrayStringsAdapter(n, items), clientData); }
|
||||
|
||||
#if wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
template <class T>
|
||||
int Append(const std::vector<T>& items)
|
||||
int Append(const std::vector<wxString>& items)
|
||||
{ return AppendItems(items); }
|
||||
#endif // wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
|
||||
@@ -266,8 +265,7 @@ public:
|
||||
{ return InsertItems(wxArrayStringsAdapter(n, items), pos, clientData); }
|
||||
|
||||
#if wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
template <class T>
|
||||
int Insert(const std::vector<T>& items, unsigned int pos)
|
||||
int Insert(const std::vector<wxString>& items, unsigned int pos)
|
||||
{ return InsertItems(items, pos); }
|
||||
#endif // wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
|
||||
@@ -288,8 +286,7 @@ public:
|
||||
{ Clear(); Append(n, items, clientData); }
|
||||
|
||||
#if wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
template <class T>
|
||||
void Set(const std::vector<T>& items)
|
||||
void Set(const std::vector<wxString>& items)
|
||||
{ Clear(); Append(items); }
|
||||
#endif // wxUSE_STD_CONTAINERS_COMPATIBLY
|
||||
|
||||
|
@@ -259,14 +259,9 @@ public:
|
||||
This is the same as the overload taking wxArrayString, except that it
|
||||
works with the standard vector container.
|
||||
|
||||
The template argument @c T can be any type convertible to wxString,
|
||||
including wxString itself but also @c std::string, @c char* or @c
|
||||
wchar_t*.
|
||||
|
||||
@since 3.1.0
|
||||
*/
|
||||
template <typename T>
|
||||
int Append(const std::vector<T>& items);
|
||||
int Append(const std::vector<wxString>& items);
|
||||
|
||||
/**
|
||||
Appends several items at once into the control.
|
||||
@@ -541,14 +536,9 @@ public:
|
||||
This is the same as the overload taking wxArrayString, except that it
|
||||
works with the standard vector container.
|
||||
|
||||
The template argument @c T can be any type convertible to wxString,
|
||||
including wxString itself but also @c std::string, @c char* or @c
|
||||
wchar_t*.
|
||||
|
||||
@since 3.1.0
|
||||
*/
|
||||
template <typename T>
|
||||
int Insert(const std::vector<T>& items);
|
||||
int Insert(const std::vector<wxString>& items);
|
||||
|
||||
/**
|
||||
Inserts several items at once into the control.
|
||||
@@ -669,14 +659,9 @@ public:
|
||||
This is the same as the overload taking wxArrayString, except that it
|
||||
works with the standard vector container.
|
||||
|
||||
The template argument @c T can be any type convertible to wxString,
|
||||
including wxString itself but also @c std::string, @c char* or @c
|
||||
wchar_t*.
|
||||
|
||||
@since 3.1.0
|
||||
*/
|
||||
template <typename T>
|
||||
void Set(const std::vector<T>& items);
|
||||
void Set(const std::vector<wxString>& items);
|
||||
|
||||
/**
|
||||
Replaces the current control contents with the given items.
|
||||
|
Reference in New Issue
Block a user