]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/filectrlg.cpp
Fix compilation error in recent change to wxSizeEvent generation.
[wxWidgets.git] / src / generic / filectrlg.cpp
index a5355661c6ed26023233aca80660890c03930236..c0086dbd1903b16e8eb174c91b5aa4ae368b6d10 100644 (file)
@@ -677,14 +677,14 @@ void wxFileListCtrl::MakeDir()
     wxListItem item;
     item.m_itemId = 0;
     item.m_col = 0;
     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);
     {
         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;
     }
     else
         delete fd;