mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[331247] Local file paste failed on Vista and Windows 7
This commit is contained in:
parent
b684f4a3e1
commit
ffc1ab0223
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,7 @@
|
|||
* David McKnight (IBM) - [299140] Local Readonly file can't be copied/pasted twice
|
||||
* Martin Oberhuber (Wind River) - [314461] NPE deleting a folder w/o permission
|
||||
* David McKnight (IBM) - [279829] [local] Save conflict dialog keeps popping up on mounted drive
|
||||
* David McKnight (IBM) - [331247] Local file paste failed on Vista and Windows 7
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.services.local.files;
|
||||
|
@ -179,6 +180,9 @@ public class LocalFileService extends AbstractFileService implements ILocalServi
|
|||
{
|
||||
_osCmdShell = "start /B "; //$NON-NLS-1$
|
||||
}
|
||||
else if (_isWindows){ // newer version of windows (i.e. vista or 7)
|
||||
_osCmdShell = "cmd /C "; //$NON-NLS-1$
|
||||
}
|
||||
_checkedOS = true;
|
||||
}
|
||||
return _isWindows;
|
||||
|
|
Loading…
Add table
Reference in a new issue