From ab958adb1edc0edaec0d483bc3c433aa9061b9cb Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Mon, 9 Sep 2002 20:27:54 +0000 Subject: [PATCH] use RemoveAt instead of Remove git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/utils/wxrcedit/pe_adv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/utils/wxrcedit/pe_adv.cpp b/contrib/utils/wxrcedit/pe_adv.cpp index 4f74f4094f..7d9c16777d 100644 --- a/contrib/utils/wxrcedit/pe_adv.cpp +++ b/contrib/utils/wxrcedit/pe_adv.cpp @@ -237,8 +237,8 @@ void PropEditCtrlFile::OnDetails() { while (axrc[0] == afile[0]) { - afile.Remove(0u); - axrc.Remove(0u); + afile.RemoveAt(0u); + axrc.RemoveAt(0u); } size_t i; txt.Empty();