replace usage of objective-c keyword 'id'
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -677,14 +677,14 @@ void wxFileListCtrl::MakeDir()
|
||||
wxListItem item;
|
||||
item.m_itemId = 0;
|
||||
item.m_col = 0;
|
||||
long id = Add( fd, item );
|
||||
long itemid = Add( fd, item );
|
||||
|
||||
if (id != -1)
|
||||
if (itemid != -1)
|
||||
{
|
||||
SortItems(m_sort_field, m_sort_forward);
|
||||
id = FindItem( 0, wxPtrToUInt(fd) );
|
||||
EnsureVisible( id );
|
||||
EditLabel( id );
|
||||
itemid = FindItem( 0, wxPtrToUInt(fd) );
|
||||
EnsureVisible( itemid );
|
||||
EditLabel( itemid );
|
||||
}
|
||||
else
|
||||
delete fd;
|
||||
|
||||
Reference in New Issue
Block a user