mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[261367] RSE- Mutiple selection Delete does not process all items selected
This commit is contained in:
parent
69a47d20bf
commit
fcfe9f6e62
1 changed files with 4 additions and 1 deletions
|
@ -19,9 +19,11 @@
|
|||
* David McKnight (IBM) - [226143] [api][breaking] Make RSE rename/delete dialogs internal
|
||||
* David McKnight (IBM) - [234030] SystemCommonDeleteAction should not fire delete event if deleting is failed
|
||||
* David McKnight (IBM) - [203361] Deleting multiple target connections misleading
|
||||
* David McKnight (IBM) - [261367] RSE- Mutiple selection Delete does not process all items selected
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Vector;
|
||||
|
@ -158,7 +160,8 @@ public class SystemCommonDeleteAction
|
|||
objectsToDelete.put(thisObject, objectName);
|
||||
remoteDeletedObjects.add(thisObject);
|
||||
}
|
||||
ok = adapter.doDeleteBatch(getShell(), set.getResourceSet(), monitor);
|
||||
List resSet = new ArrayList(set.getResourceSet());
|
||||
ok = adapter.doDeleteBatch(getShell(), resSet, monitor);
|
||||
}
|
||||
catch (SystemMessageException e)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue