diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.java index 23f6102adf8..fe48a3b97b8 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010, 2010 Andrew Gvozdev and others. + * Copyright (c) 2010, 2011 Andrew Gvozdev 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 @@ -7,6 +7,7 @@ * * Contributors: * Andrew Gvozdev - Initial API and implementation + * IBM Corporation *******************************************************************************/ package org.eclipse.cdt.internal.ui.newui; @@ -75,6 +76,8 @@ public class Messages extends NLS { public static String BuildVarListDialog_6; public static String BuildVarListDialog_7; public static String BuildVarListDialog_8; + public static String BuildVarListDialog_10; + public static String BuildVarListDialog_11; public static String CCProjectWizard_0; public static String CDTCommonProjectWizard_0; public static String CDTCommonProjectWizard_1; diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.properties b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.properties index e0044ac0666..80f166a65c7 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.properties +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/newui/Messages.properties @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2000, 2010 IBM Corporation, QNX Software Systems, and others. +# Copyright (c) 2000, 2011 IBM Corporation, 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 @@ -263,8 +263,8 @@ BuildVarListDialog_5=List of Directory paths BuildVarListDialog_6=Any path BuildVarListDialog_7=List of any paths BuildVarListDialog_8=Text -BuildVarListDialog_0= -BuildVarListDialog_1=Build variables +BuildVarListDialog_10= +BuildVarListDialog_11=Build variables StringVariableSelectionDialog_message=&Choose a variable (? = any character, * = any string): StringVariableSelectionDialog_columnDescription=&Variable Description: CDTMainWizardPage_0=Project name cannot contain '\#' symbol diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BuildVarListDialog.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BuildVarListDialog.java index 9d958eae045..382cef84695 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BuildVarListDialog.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/BuildVarListDialog.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2009 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 @@ -40,7 +40,7 @@ public class BuildVarListDialog extends ElementListSelectionDialog { private Text text; private Label type; - private static final String LIST_DESCRIPTION = Messages.BuildVarListDialog_1; + private static final String LIST_DESCRIPTION = Messages.BuildVarListDialog_11; public BuildVarListDialog(Shell parent, Object[] input) { super(parent, new LabelProvider () { @@ -109,7 +109,7 @@ public class BuildVarListDialog extends ElementListSelectionDialog { } } if (descr == null) - descr = Messages.BuildVarListDialog_0; + descr = Messages.BuildVarListDialog_10; text.setText(descr); }