From: Julian Smart Date: Tue, 19 Aug 2003 19:27:52 +0000 (+0000) Subject: Correcting typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d56cc7b1bcdf2d6547b9aaf205f1202b6bacab19 Correcting typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/list.h b/include/wx/list.h index c17823a71b..ab36a45db2 100644 --- a/include/wx/list.h +++ b/include/wx/list.h @@ -862,7 +862,7 @@ private: while (n < size()) \ pop_back(); \ while (n > size()) \ - push_back(); \ + push_back(v); \ } \ size_type size() const { return GetCount(); } \ size_type max_size() const { return INT_MAX; } \