1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 09:15:38 +02:00

Cosmetics

Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-04-22 13:09:34 -04:00
parent d92be4a40e
commit 493e6b3fac

View file

@ -10,6 +10,7 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.examples.dsf.gdb.ui; 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.cdt.launch.ui.CLaunchConfigurationTab;
import org.eclipse.debug.core.ILaunchConfiguration; import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
@ -53,7 +54,7 @@ public class ExtendedTab extends CLaunchConfigurationTab {
gd.horizontalSpan = 1; gd.horizontalSpan = 1;
comp.setLayoutData(gd); comp.setLayoutData(gd);
Label l = new Label(comp, SWT.NONE); 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 = new GridData();
gd.horizontalSpan = 2; gd.horizontalSpan = 2;
l.setLayoutData(gd); l.setLayoutData(gd);