mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-16 04:35:45 +02:00
Set title and description for new target wizard selection page.
Change-Id: I15ade69533ef0227864c0723678d9df672db39c4
This commit is contained in:
parent
9419e2213f
commit
eb93740aba
3 changed files with 174 additions and 165 deletions
|
@ -39,6 +39,10 @@ public class Messages extends NLS {
|
|||
|
||||
public static String NewLaunchTargetWizard_Title;
|
||||
|
||||
public static String NewLaunchTargetWizardSelectionPage_Description;
|
||||
|
||||
public static String NewLaunchTargetWizardSelectionPage_Title;
|
||||
|
||||
public static String DescriptorMustNotBeNull;
|
||||
public static String DescriptorMustNotBeNullDesc;
|
||||
public static String NoActiveTarget;
|
||||
|
|
|
@ -28,6 +28,8 @@ NewLaunchConfigTypePage2_Mode=Launch Mode
|
|||
NewLaunchConfigTypePage2_Type=Launch Configuration Type
|
||||
NewLaunchConfigWizard_0=Create Launch Configuration
|
||||
NewLaunchTargetWizard_Title=New Launch Target
|
||||
NewLaunchTargetWizardSelectionPage_Description=Select the type of target to create.
|
||||
NewLaunchTargetWizardSelectionPage_Title=New Launch Target
|
||||
|
||||
DescriptorMustNotBeNull=Descriptor must not be null
|
||||
DescriptorMustNotBeNullDesc=The launch descriptor must not be null.
|
||||
|
|
|
@ -25,6 +25,7 @@ import org.eclipse.jface.wizard.IWizardPage;
|
|||
import org.eclipse.jface.wizard.Wizard;
|
||||
import org.eclipse.jface.wizard.WizardPage;
|
||||
import org.eclipse.launchbar.ui.internal.Activator;
|
||||
import org.eclipse.launchbar.ui.internal.Messages;
|
||||
import org.eclipse.launchbar.ui.target.LaunchTargetWizard;
|
||||
import org.eclipse.swt.SWT;
|
||||
import org.eclipse.swt.events.SelectionEvent;
|
||||
|
@ -44,6 +45,8 @@ class NewLaunchTargetWizardSelectionPage extends WizardPage {
|
|||
|
||||
public NewLaunchTargetWizardSelectionPage() {
|
||||
super(NewLaunchTargetWizardSelectionPage.class.getName());
|
||||
setTitle(Messages.NewLaunchTargetWizardSelectionPage_Title);
|
||||
setDescription(Messages.NewLaunchTargetWizardSelectionPage_Description);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue