mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-21 16:05:25 +02:00
Warning cleanup.
This commit is contained in:
parent
3a15714c5d
commit
ff59fc7493
3 changed files with 16 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-08-12 Mikhail Khodjaiants
|
||||||
|
Warning cleanup.
|
||||||
|
* CApplicationLaunchShortcut.java
|
||||||
|
|
||||||
2004-08-16 Mikhail Khodjaiants
|
2004-08-16 Mikhail Khodjaiants
|
||||||
Contextual launch shortcuts cleanup.
|
Contextual launch shortcuts cleanup.
|
||||||
* plugin.properties
|
* plugin.properties
|
||||||
|
|
|
@ -234,9 +234,11 @@ public class CApplicationLaunchShortcut implements ILaunchShortcut {
|
||||||
protected String getDebugConfigDialogMessageString(ICDebugConfiguration [] configList, String mode) {
|
protected String getDebugConfigDialogMessageString(ICDebugConfiguration [] configList, String mode) {
|
||||||
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseConfigToDebug"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseConfigToDebug"); //$NON-NLS-1$
|
||||||
}
|
} else if (mode.equals(ILaunchManager.RUN_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseConfigToRun"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseConfigToRun"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.Invalid_launch_mode_1"); //$NON-NLS-1$
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -266,9 +268,11 @@ public class CApplicationLaunchShortcut implements ILaunchShortcut {
|
||||||
protected String getLaunchSelectionDialogMessageString(List binList, String mode) {
|
protected String getLaunchSelectionDialogMessageString(List binList, String mode) {
|
||||||
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLaunchConfigToDebug"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLaunchConfigToDebug"); //$NON-NLS-1$
|
||||||
}
|
} else if (mode.equals(ILaunchManager.RUN_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLaunchConfigToRun"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLaunchConfigToRun"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.Invalid_launch_mode_2"); //$NON-NLS-1$
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prompts the user to select a binary
|
* Prompts the user to select a binary
|
||||||
|
@ -323,9 +327,11 @@ public class CApplicationLaunchShortcut implements ILaunchShortcut {
|
||||||
protected String getBinarySelectionDialogMessageString(List binList, String mode) {
|
protected String getBinarySelectionDialogMessageString(List binList, String mode) {
|
||||||
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
if (mode.equals(ILaunchManager.DEBUG_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLocalAppToDebug"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLocalAppToDebug"); //$NON-NLS-1$
|
||||||
}
|
} else if (mode.equals(ILaunchManager.RUN_MODE)) {
|
||||||
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLocalAppToRun"); //$NON-NLS-1$
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.ChooseLocalAppToRun"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
return LaunchUIPlugin.getResourceString("CApplicationLaunchShortcut.Invalid_launch_mode_3"); //$NON-NLS-1$
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method searchAndLaunch.
|
* Method searchAndLaunch.
|
||||||
|
|
|
@ -52,6 +52,9 @@ CApplicationLaunchShortcut.Launch_failed_no_binaries=Launch failed no binaries
|
||||||
CApplicationLaunchShortcut.LaunchFailed=Launch failed
|
CApplicationLaunchShortcut.LaunchFailed=Launch failed
|
||||||
CApplicationLaunchShortcut.LaunchDebugConfigSelection=Launch Debug Configuration Selection
|
CApplicationLaunchShortcut.LaunchDebugConfigSelection=Launch Debug Configuration Selection
|
||||||
CApplicationLaunchShortcut.LaunchConfigSelection=Launch Configuration Selection
|
CApplicationLaunchShortcut.LaunchConfigSelection=Launch Configuration Selection
|
||||||
|
CApplicationLaunchShortcut.Invalid_launch_mode_1=Invalid launch mode
|
||||||
|
CApplicationLaunchShortcut.Invalid_launch_mode_2=Invalid launch mode.
|
||||||
|
CApplicationLaunchShortcut.Invalid_launch_mode_3=Invalid launch mode.
|
||||||
CApplicationLaunchShortcut.ChooseLaunchConfigToDebug=Choose a launch configuration to debug
|
CApplicationLaunchShortcut.ChooseLaunchConfigToDebug=Choose a launch configuration to debug
|
||||||
CApplicationLaunchShortcut.ChooseLaunchConfigToRun=Choose a launch configuration to run
|
CApplicationLaunchShortcut.ChooseLaunchConfigToRun=Choose a launch configuration to run
|
||||||
CApplicationLaunchShortcut.Launch_failed_no_project_selected=Launch failed no project selected
|
CApplicationLaunchShortcut.Launch_failed_no_project_selected=Launch failed no project selected
|
||||||
|
|
Loading…
Add table
Reference in a new issue