Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-01-15 01:15:52 +0000
committerDarin Wright2005-01-15 01:15:52 +0000
commit7dc56b27b5262eafe0181966c1b241c29eff33ba (patch)
treeb3222c985e041206ae9b0dd3a83730bbbea60080 /org.eclipse.debug.ui
parentb758c53e26900836ea8ffc6bf03a80ed453570c0 (diff)
downloadeclipse.platform.debug-7dc56b27b5262eafe0181966c1b241c29eff33ba.tar.gz
eclipse.platform.debug-7dc56b27b5262eafe0181966c1b241c29eff33ba.tar.xz
eclipse.platform.debug-7dc56b27b5262eafe0181966c1b241c29eff33ba.zip
Bug 82895 - Broken strings in new "breakpoint working set" dialog
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointWorkingSetPage.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointWorkingSetPage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointWorkingSetPage.java
index a3d35cf0e..b0f9a7a1e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointWorkingSetPage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointWorkingSetPage.java
@@ -18,8 +18,8 @@ import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.IBreakpointManager;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.internal.ui.DebugPluginImages;
-import org.eclipse.debug.internal.ui.DebugUIMessages;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
+import org.eclipse.debug.internal.ui.views.DebugUIViewsMessages;
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.dialogs.Dialog;
@@ -58,7 +58,7 @@ import org.eclipse.ui.dialogs.IWorkingSetPage;
*/
public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetPage {
- final private static String PAGE_TITLE= DebugUIMessages.getString("BreakpointWorkingSetPage.0"); //$NON-NLS-1$
+ final private static String PAGE_TITLE= DebugUIViewsMessages.getString("BreakpointWorkingSetPage.0"); //$NON-NLS-1$
final private static String PAGE_ID= "breakpointWorkingSetPage"; //$NON-NLS-1$
private Text fWorkingSetName;
@@ -117,7 +117,7 @@ public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetP
*/
public BreakpointWorkingSetPage() {
super(PAGE_ID, PAGE_TITLE, DebugPluginImages.getImageDescriptor(IDebugUIConstants.IMG_WIZBAN_DEBUG));
- setDescription(DebugUIMessages.getString("BreakpointWorkingSetPage.1")); //$NON-NLS-1$
+ setDescription(DebugUIViewsMessages.getString("BreakpointWorkingSetPage.1")); //$NON-NLS-1$
fFirstCheck= true;
}
@@ -133,7 +133,7 @@ public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetP
setControl(composite);
Label label= new Label(composite, SWT.WRAP);
- label.setText(DebugUIMessages.getString("BreakpointWorkingSetPage.2")); //$NON-NLS-1$
+ label.setText(DebugUIViewsMessages.getString("BreakpointWorkingSetPage.2")); //$NON-NLS-1$
GridData gd= new GridData(GridData.GRAB_HORIZONTAL | GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_CENTER);
label.setLayoutData(gd);
@@ -149,7 +149,7 @@ public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetP
fWorkingSetName.setFocus();
label= new Label(composite, SWT.WRAP);
- label.setText(DebugUIMessages.getString("BreakpointWorkingSetPage.3")); //$NON-NLS-1$
+ label.setText(DebugUIViewsMessages.getString("BreakpointWorkingSetPage.3")); //$NON-NLS-1$
gd= new GridData(GridData.GRAB_HORIZONTAL | GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_CENTER);
label.setLayoutData(gd);
@@ -221,14 +221,14 @@ public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetP
String newText= fWorkingSetName.getText();
if (newText.equals(newText.trim()) == false)
- errorMessage = DebugUIMessages.getString("BreakpointWorkingSetPage.4"); //$NON-NLS-1$
+ errorMessage = DebugUIViewsMessages.getString("BreakpointWorkingSetPage.4"); //$NON-NLS-1$
if (newText.equals("")) { //$NON-NLS-1$
if (fFirstCheck) {
setPageComplete(false);
fFirstCheck= false;
return;
}
- errorMessage= DebugUIMessages.getString("BreakpointWorkingSetPage.5"); //$NON-NLS-1$
+ errorMessage= DebugUIViewsMessages.getString("BreakpointWorkingSetPage.5"); //$NON-NLS-1$
}
fFirstCheck= false;
@@ -237,12 +237,12 @@ public class BreakpointWorkingSetPage extends WizardPage implements IWorkingSetP
IWorkingSet[] workingSets= PlatformUI.getWorkbench().getWorkingSetManager().getWorkingSets();
for (int i= 0; i < workingSets.length; i++) {
if (newText.equals(workingSets[i].getName())) {
- errorMessage= DebugUIMessages.getString("BreakpointWorkingSetPage.6"); //$NON-NLS-1$
+ errorMessage= DebugUIViewsMessages.getString("BreakpointWorkingSetPage.6"); //$NON-NLS-1$
}
}
}
if (errorMessage == null && !hasCheckedElement())
- errorMessage= DebugUIMessages.getString("BreakpointWorkingSetPage.7"); //$NON-NLS-1$
+ errorMessage= DebugUIViewsMessages.getString("BreakpointWorkingSetPage.7"); //$NON-NLS-1$
setErrorMessage(errorMessage);
setPageComplete(errorMessage == null);

Back to the top