mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 05:05:43 +02:00
Bug 387132 - AR: Incorrect mirrored strings and
bracket occurred on "Properties for autotools" pages on Linux
This commit is contained in:
parent
037bc8b58d
commit
62502ef095
1 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2007, 2010 Intel Corporation, QNX Software Systems, and others.
|
* Copyright (c) 2007, 2012 Intel Corporation, QNX Software Systems, and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -11,6 +11,7 @@
|
||||||
* Andrew Gvozdev
|
* Andrew Gvozdev
|
||||||
* QNX Software Systems - [271628] NPE in configs for project that failed to convert
|
* QNX Software Systems - [271628] NPE in configs for project that failed to convert
|
||||||
* James Blackburn (Broadcom Corp.)
|
* James Blackburn (Broadcom Corp.)
|
||||||
|
* IBM Corporation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.ui.newui;
|
package org.eclipse.cdt.ui.newui;
|
||||||
|
|
||||||
|
@ -51,6 +52,7 @@ import org.eclipse.jface.preference.IPreferenceStore;
|
||||||
import org.eclipse.jface.resource.ImageDescriptor;
|
import org.eclipse.jface.resource.ImageDescriptor;
|
||||||
import org.eclipse.jface.util.IPropertyChangeListener;
|
import org.eclipse.jface.util.IPropertyChangeListener;
|
||||||
import org.eclipse.jface.util.PropertyChangeEvent;
|
import org.eclipse.jface.util.PropertyChangeEvent;
|
||||||
|
import org.eclipse.osgi.util.TextProcessor;
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.events.SelectionAdapter;
|
import org.eclipse.swt.events.SelectionAdapter;
|
||||||
import org.eclipse.swt.events.SelectionEvent;
|
import org.eclipse.swt.events.SelectionEvent;
|
||||||
|
@ -774,7 +776,7 @@ implements
|
||||||
if (cfgDescs[i].isActive()) {
|
if (cfgDescs[i].isActive()) {
|
||||||
name = name + " " + Messages.AbstractPage_16; //$NON-NLS-1$
|
name = name + " " + Messages.AbstractPage_16; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
configSelector.add(name);
|
configSelector.add(TextProcessor.process(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure that the last selected config is selected by default
|
// Ensure that the last selected config is selected by default
|
||||||
|
|
Loading…
Add table
Reference in a new issue