compilation fix for insert()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -130,7 +130,7 @@ public:
|
|||||||
{
|
{
|
||||||
wxCHECK2(Alloc(size() + 1), return 0);
|
wxCHECK2(Alloc(size() + 1), return 0);
|
||||||
size_type idx = it - begin();
|
size_type idx = it - begin();
|
||||||
InsertAt(new value_type(o), idx);
|
InsertAt(new value_type(v), idx);
|
||||||
return begin() + idx;
|
return begin() + idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user