Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2005-04-07 16:23:49 +0000
committerKevin Barnes2005-04-07 16:23:49 +0000
commitf4beb6f64e7d69fcc72e30d46e69e79d904ed877 (patch)
treee5b9ff494ae4dd45f933fe9a62c450b8fc573319 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java
parentef72668528ac981f56498b03a4ddb876deac7275 (diff)
downloadeclipse.platform.debug-f4beb6f64e7d69fcc72e30d46e69e79d904ed877.tar.gz
eclipse.platform.debug-f4beb6f64e7d69fcc72e30d46e69e79d904ed877.tar.xz
eclipse.platform.debug-f4beb6f64e7d69fcc72e30d46e69e79d904ed877.zip
Bug 90318 - Change string externalization to use new format
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java
index dd7a4d14d..f88afe3f6 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/CompileErrorProjectPromptStatusHandler.java
@@ -56,7 +56,7 @@ public class CompileErrorProjectPromptStatusHandler implements IStatusHandler {
}
Shell shell = DebugUIPlugin.getShell();
- String title = LaunchConfigurationsMessages.getString("CompileErrorPromptStatusHandler.0"); //$NON-NLS-1$
+ String title = LaunchConfigurationsMessages.CompileErrorPromptStatusHandler_0; //$NON-NLS-1$
StringBuffer projectMessage = new StringBuffer();
for (int i = 0; i < projects.size(); i++) {
if (i > 0) {
@@ -64,7 +64,7 @@ public class CompileErrorProjectPromptStatusHandler implements IStatusHandler {
}
projectMessage.append(((IProject)projects.get(i)).getName());
}
- String message = MessageFormat.format(LaunchConfigurationsMessages.getString("CompileErrorPromptStatusHandler.2"), new String[]{projectMessage.toString()}); //$NON-NLS-1$
+ String message = MessageFormat.format(LaunchConfigurationsMessages.CompileErrorPromptStatusHandler_2, new String[]{projectMessage.toString()}); //$NON-NLS-1$
IPreferenceStore store = DebugUIPlugin.getDefault().getPreferenceStore();
String pref = store.getString(IInternalDebugUIConstants.PREF_CONTINUE_WITH_COMPILE_ERROR);

Back to the top