Make a single for loop out of two
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3022,14 +3022,15 @@ void wxGtkTreeModelNode::Resort()
|
|||||||
// Sort array keeping original positions
|
// Sort array keeping original positions
|
||||||
wxQsort( temp, child_count, sizeof(wxGtkTreeModelChildWithPos),
|
wxQsort( temp, child_count, sizeof(wxGtkTreeModelChildWithPos),
|
||||||
&wxGtkTreeModelChildWithPosCmp, m_internal );
|
&wxGtkTreeModelChildWithPosCmp, m_internal );
|
||||||
// Transfer positions to new_order array
|
// Transfer positions to new_order array and
|
||||||
|
// IDs to m_children
|
||||||
|
m_children.Clear();
|
||||||
gint *new_order = new gint[child_count];
|
gint *new_order = new gint[child_count];
|
||||||
for (i = 0; i < child_count; i++)
|
for (i = 0; i < child_count; i++)
|
||||||
|
{
|
||||||
new_order[i] = temp[i].pos;
|
new_order[i] = temp[i].pos;
|
||||||
// Transfer IDs to m_children
|
|
||||||
m_children.Clear();
|
|
||||||
for (i = 0; i < child_count; i++)
|
|
||||||
m_children.Add( temp[i].id );
|
m_children.Add( temp[i].id );
|
||||||
|
}
|
||||||
// Delete array
|
// Delete array
|
||||||
delete [] temp;
|
delete [] temp;
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user