1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Bug 312092 - TVT36:TCT174: FRA - Duplicate mnemonic for Browse (same string used twice in same panel)

This commit is contained in:
Vivian Kong 2010-05-07 18:09:31 +00:00
parent 6ad86fa192
commit 528612c2b2
4 changed files with 18 additions and 4 deletions

View file

@ -9,6 +9,7 @@
* QNX Software Systems - initial API and implementation
* Ken Ryall (Nokia) - bug 178731
* Ericsson - Support for tracepoint post-mortem debugging
* IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.dsf.gdb.internal.ui.launching;
@ -213,7 +214,7 @@ public class CMainTab extends CAbstractMainTab {
});
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) {

View file

@ -1,5 +1,5 @@
###############################################################################
# Copyright (c) 2008, 2009 QNX Software Systems and others.
# Copyright (c) 2008, 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
@ -161,6 +161,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

View file

@ -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

View file

@ -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) {