mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Removed periods from statement definitions
This commit is contained in:
parent
be178a362f
commit
a8ed987fd5
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2002-11-13 Thomas Fletcher
|
||||||
|
* src/.../launch/ui/CDebuggerTab.java
|
||||||
|
Updated punctuation.
|
||||||
|
|
||||||
2002-11-13 David Inglis
|
2002-11-13 David Inglis
|
||||||
* src/.../launch/ui/CDebuggerTab.java
|
* src/.../launch/ui/CDebuggerTab.java
|
||||||
* src/.../launch/ui/CLaunchConfigurationTab.java
|
* src/.../launch/ui/CLaunchConfigurationTab.java
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
|
||||||
gd = new GridData();
|
gd = new GridData();
|
||||||
gd.horizontalSpan = 2;
|
gd.horizontalSpan = 2;
|
||||||
radioComp.setLayoutData(gd);
|
radioComp.setLayoutData(gd);
|
||||||
fRunButton = createRadioButton(radioComp, "Run program in debugger.");
|
fRunButton = createRadioButton(radioComp, "Run program in debugger");
|
||||||
fRunButton.addSelectionListener(new SelectionAdapter() {
|
fRunButton.addSelectionListener(new SelectionAdapter() {
|
||||||
public void widgetSelected(SelectionEvent e) {
|
public void widgetSelected(SelectionEvent e) {
|
||||||
if (fRunButton.getSelection() == true) {
|
if (fRunButton.getSelection() == true) {
|
||||||
|
@ -71,7 +71,7 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
|
||||||
updateLaunchConfigurationDialog();
|
updateLaunchConfigurationDialog();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
fAttachButton = createRadioButton(radioComp, "Attach to running process.");
|
fAttachButton = createRadioButton(radioComp, "Attach to running process");
|
||||||
fAttachButton.addSelectionListener(new SelectionAdapter() {
|
fAttachButton.addSelectionListener(new SelectionAdapter() {
|
||||||
public void widgetSelected(SelectionEvent e) {
|
public void widgetSelected(SelectionEvent e) {
|
||||||
updateLaunchConfigurationDialog();
|
updateLaunchConfigurationDialog();
|
||||||
|
@ -79,7 +79,7 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
|
||||||
});
|
});
|
||||||
|
|
||||||
fStopInMain = new Button(comp, SWT.CHECK);
|
fStopInMain = new Button(comp, SWT.CHECK);
|
||||||
fStopInMain.setText("Stop at main() on startup.");
|
fStopInMain.setText("Stop at main() on startup");
|
||||||
gd = new GridData();
|
gd = new GridData();
|
||||||
gd.horizontalSpan = 2;
|
gd.horizontalSpan = 2;
|
||||||
fStopInMain.setLayoutData(gd);
|
fStopInMain.setLayoutData(gd);
|
||||||
|
|
Loading…
Add table
Reference in a new issue