1
0
Fork 0
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:
David McKnight 2010-11-30 17:05:47 +00:00
parent b684f4a3e1
commit ffc1ab0223

View file

@ -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;