From 493e6b3fac0b223f0fa83b3d7eb9b2bff0159dd0 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Wed, 22 Apr 2015 13:09:34 -0400 Subject: [PATCH] Cosmetics Signed-off-by: Marc Khouzam --- .../src/org/eclipse/cdt/examples/dsf/gdb/ui/ExtendedTab.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/src/org/eclipse/cdt/examples/dsf/gdb/ui/ExtendedTab.java b/dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/src/org/eclipse/cdt/examples/dsf/gdb/ui/ExtendedTab.java index 2d6a59417eb..3085548e5d1 100644 --- a/dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/src/org/eclipse/cdt/examples/dsf/gdb/ui/ExtendedTab.java +++ b/dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/src/org/eclipse/cdt/examples/dsf/gdb/ui/ExtendedTab.java @@ -10,6 +10,7 @@ *******************************************************************************/ package org.eclipse.cdt.examples.dsf.gdb.ui; +import org.eclipse.cdt.examples.dsf.gdb.GDBExamplePlugin; import org.eclipse.cdt.launch.ui.CLaunchConfigurationTab; import org.eclipse.debug.core.ILaunchConfiguration; import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; @@ -53,7 +54,7 @@ public class ExtendedTab extends CLaunchConfigurationTab { gd.horizontalSpan = 1; comp.setLayoutData(gd); Label l = new Label(comp, SWT.NONE); - l.setText("This tab is contributed by org.eclipse.cdt.example.dsf.gdb"); //$NON-NLS-1$ + l.setText("This empty tab is contributed by " + GDBExamplePlugin.PLUGIN_ID); //$NON-NLS-1$ gd = new GridData(); gd.horizontalSpan = 2; l.setLayoutData(gd);