From 7672ae29ac0f108a1f7088592c49bc2304f34b89 Mon Sep 17 00:00:00 2001 From: Emilia Dominiak Date: Mon, 20 Jan 2020 11:56:02 +0100 Subject: [PATCH] Change wizard name Use 'configuration' instead of 'connection' in wizard window to better reflect the real usage. Signed-off-by: Emilia Dominiak --- .../src/org/sofproject/ui/wizards/NewAudioDevNodeWizard.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.sofproject.ui/src/org/sofproject/ui/wizards/NewAudioDevNodeWizard.java b/org.sofproject.ui/src/org/sofproject/ui/wizards/NewAudioDevNodeWizard.java index 5419fc5..527c76d 100644 --- a/org.sofproject.ui/src/org/sofproject/ui/wizards/NewAudioDevNodeWizard.java +++ b/org.sofproject.ui/src/org/sofproject/ui/wizards/NewAudioDevNodeWizard.java @@ -59,8 +59,8 @@ public void init(IWorkbench workbench, IStructuredSelection selection) { super.addPages(); connPage = new NewAudioDevNodeCreationPage("NewConnection", audioDevNodeProject); - connPage.setTitle("New Connection"); - connPage.setDescription("Create new connection to Audio Development node"); + connPage.setTitle("New Configuration"); + connPage.setDescription("Create new configuration to Audio Development node"); connPage.setImageDescriptor(ImageDescriptor.createFromFile(getClass(), "/icons/audio-dev-icon.png")); addPage(connPage); connPage.init(selection);