1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 387132 - AR: Incorrect mirrored strings and

bracket occurred on "Properties for autotools" pages on Linux
This commit is contained in:
Vivian Kong 2012-08-24 16:36:00 -04:00
parent 62502ef095
commit ca576d22bd

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2009, 2011 Red Hat Inc. * Copyright (c) 2009, 2012 Red Hat Inc.
* 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
@ -7,6 +7,7 @@
* *
* Contributors: * Contributors:
* Red Hat Inc. - initial API and implementation * Red Hat Inc. - initial API and implementation
* IBM Corporation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.autotools.core.configure; package org.eclipse.cdt.internal.autotools.core.configure;
@ -16,6 +17,7 @@ import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map; import java.util.Map;
import org.eclipse.osgi.util.TextProcessor;
public class AutotoolsConfiguration implements IAConfiguration { public class AutotoolsConfiguration implements IAConfiguration {
@ -55,11 +57,11 @@ public class AutotoolsConfiguration implements IAConfiguration {
} }
public String getDescription() { public String getDescription() {
return ConfigureMessages.getConfigureDescription(transformedName); return TextProcessor.process(ConfigureMessages.getConfigureDescription(transformedName));
} }
public String getToolTip() { public String getToolTip() {
return ConfigureMessages.getConfigureTip(transformedName); return TextProcessor.process(ConfigureMessages.getConfigureTip(transformedName));
} }
} }