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:
Stefan Csomor
2011-03-16 07:22:56 +00:00
parent 4b1d0dbe25
commit 6485c8d7fb
3 changed files with 27 additions and 27 deletions

View File

@@ -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;