Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fogcreek shellext: fixed freeze when dropping or pasting files in Windows Explorer

Changeset 25e30a8d371a

Parent 96a91ceb5f75

by David Golub

Changes to one file · Browse files at 25e30a8d371a Showing diff from parent 96a91ceb5f75 Diff from another changeset...

 
50
51
52
53
 
 
54
55
 
56
57
58
 
50
51
52
 
53
54
55
 
56
57
58
59
@@ -50,9 +50,10 @@
  CAtlList<CString> entries;   Tokenize(entries_string, entries, " ");   - for (;;) + POSITION position = entries.GetHeadPosition(); + while (position != NULL)   { - CString strName = entries.GetHead(); + CString strName = entries.GetNext(position);   if (strName.IsEmpty())   break;   InsertMenuItemByName(hMenu, strName, indexMenu++, idCmd++, idCmdFirst, L"");