大文字小文字違いでの重複リストアップを修正
@@ -353,7 +353,7 @@ | ||
353 | 353 | bool found =false; |
354 | 354 | foreach (ListViewItem vItem in this.listView.Items) { |
355 | 355 | //一致するかどうかはFullNameでチェック |
356 | - if (vItem.SubItems[1].Text == item.FullName) { | |
356 | + if (vItem.SubItems[1].Text.ToUpper() == item.FullName.ToUpper()) { | |
357 | 357 | found = true; |
358 | 358 | break; |
359 | 359 | } |