mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug 183105: Wrong status handler for launch error code 101: Working directory does not exist.
This commit is contained in:
parent
f2077c50f8
commit
9329353166
2 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@
|
|||
id="org.eclipse.cdt.launch.statusHandler.processPrompter">
|
||||
</statusHandler>
|
||||
<statusHandler
|
||||
code="108"
|
||||
code="1001"
|
||||
plugin="org.eclipse.cdt.launch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.CoreFilePrompter"
|
||||
id="org.eclipse.cdt.launch.statusHandler.coreFilePrompter">
|
||||
|
|
|
@ -382,7 +382,7 @@ public class LocalCDILaunchDelegate extends AbstractCLaunchDelegate {
|
|||
|
||||
protected IPath promptForCoreFilePath( final IProject project, final ICDebugConfiguration debugConfig ) throws CoreException {
|
||||
IStatus fPromptStatus = new Status( IStatus.INFO, "org.eclipse.debug.ui", 200, "", null ); //$NON-NLS-1$//$NON-NLS-2$
|
||||
IStatus processPrompt = new Status( IStatus.INFO, "org.eclipse.cdt.launch", 101, "", null ); //$NON-NLS-1$//$NON-NLS-2$
|
||||
IStatus processPrompt = new Status( IStatus.INFO, "org.eclipse.cdt.launch", 1001, "", null ); //$NON-NLS-1$//$NON-NLS-2$
|
||||
// consult a status handler
|
||||
IStatusHandler prompter = DebugPlugin.getDefault().getStatusHandler( fPromptStatus );
|
||||
if ( prompter != null ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue