Skip to main content
summaryrefslogtreecommitdiffstats
path: root/launch
diff options
context:
space:
mode:
authorVivian Kong2010-05-07 18:09:31 +0000
committerVivian Kong2010-05-07 18:09:31 +0000
commit528612c2b215b01ee19757545c11b0439330a4ba (patch)
treef1243a08eb0bcf1fe806eb5575dfaa96e570d027 /launch
parent6ad86fa192a9bdb51abbfa529a95de04b396e464 (diff)
downloadorg.eclipse.cdt-528612c2b215b01ee19757545c11b0439330a4ba.tar.gz
org.eclipse.cdt-528612c2b215b01ee19757545c11b0439330a4ba.tar.xz
org.eclipse.cdt-528612c2b215b01ee19757545c11b0439330a4ba.zip
Bug 312092 - TVT36:TCT174: FRA - Duplicate mnemonic for Browse (same string used twice in same panel)
Diffstat (limited to 'launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchMessages.properties3
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CAbstractMainTab.java13
2 files changed, 14 insertions, 2 deletions
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchMessages.properties b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchMessages.properties
index 26a6e5e6f03..1b1e7cb8177 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchMessages.properties
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/ui/LaunchMessages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2002, 2008 QNX Software Systems and others.
+# Copyright (c) 2002, 2010 QNX Software Systems and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -150,6 +150,7 @@ Launch.common.BinariesColon=Binaries:
Launch.common.QualifierColon=Qualifier:
Launch.common.Browse_1=&Browse...
Launch.common.Browse_2=B&rowse...
+Launch.common.Browse_3=Bro&wse...
Launch.common.Project_does_not_exist=Project does not exist
LocalCDILaunchDelegate.0=Launching Local C/C++ Application
LocalCDILaunchDelegate.1=Launching debugger session
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CAbstractMainTab.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CAbstractMainTab.java
index b357863f1c9..5d9536ba05e 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CAbstractMainTab.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/ui/CAbstractMainTab.java
@@ -1,3 +1,14 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Nokia Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Ken Ryall (Nokia) - initial API and implementation
+ * IBM Corporation
+ *******************************************************************************/
package org.eclipse.cdt.launch.ui;
import java.util.ArrayList;
@@ -418,7 +429,7 @@ public abstract class CAbstractMainTab extends CLaunchConfigurationTab {
});
Button browseForCoreButton;
- browseForCoreButton = createPushButton(coreComp, LaunchMessages.getString("Launch.common.Browse_2"), null); //$NON-NLS-1$
+ browseForCoreButton = createPushButton(coreComp, LaunchMessages.getString("Launch.common.Browse_3"), null); //$NON-NLS-1$
browseForCoreButton.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent evt) {

Back to the top