Made code that uses wxArrayPGProperty more STL compliant (still can't use wxVector for it because I think there is no wx equivalent of std::sort)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2009-08-18 14:28:08 +00:00
parent f9136b63ee
commit 7f3f8f1e85
3 changed files with 45 additions and 25 deletions

View File

@@ -784,7 +784,7 @@ bool wxPropertyGrid::DoRemoveFromSelection( wxPGProperty* prop, int selFlags )
}
else
{
selection.Remove(prop);
m_pState->DoRemoveFromSelection(prop);
RefreshProperty(prop);
res = true;
}