mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Revert "Bug 387135 - ARA: Wrong direction of bracket displayed on new C++ Project toolchains column "
This reverts commit bb37ddefd3
.
This commit is contained in:
parent
635811ba39
commit
b88451c3f2
1 changed files with 2 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2007, 2012 Intel Corporation and others.
|
||||
* Copyright (c) 2007, 2011 Intel 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
|
||||
|
@ -8,7 +8,6 @@
|
|||
* Contributors:
|
||||
* Intel Corporation - initial API and implementation
|
||||
* James Blackbrun (Broadcom Corp.)
|
||||
* IBM Corporation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.managedbuilder.ui.wizards;
|
||||
|
||||
|
@ -32,7 +31,6 @@ import org.eclipse.jface.viewers.Viewer;
|
|||
import org.eclipse.jface.window.Window;
|
||||
import org.eclipse.jface.wizard.IWizardPage;
|
||||
import org.eclipse.jface.wizard.WizardPage;
|
||||
import org.eclipse.osgi.util.TextProcessor;
|
||||
import org.eclipse.swt.SWT;
|
||||
import org.eclipse.swt.events.SelectionAdapter;
|
||||
import org.eclipse.swt.events.SelectionEvent;
|
||||
|
@ -142,7 +140,7 @@ public class CDTConfigWizardPage extends WizardPage {
|
|||
tv.setLabelProvider(new LabelProvider() {
|
||||
@Override
|
||||
public String getText(Object element) {
|
||||
return element == null ? EMPTY_STR : TextProcessor.process(((CfgHolder)element).getName());
|
||||
return element == null ? EMPTY_STR : ((CfgHolder)element).getName();
|
||||
}
|
||||
@Override
|
||||
public Image getImage(Object element) { return IMG_CONFIG; }
|
||||
|
|
Loading…
Add table
Reference in a new issue