mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
fixed typo
This commit is contained in:
parent
1c8774e46c
commit
cb369c6fcc
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ public class CDebuggerPage extends AbstractLaunchConfigurationTab {
|
||||||
createVerticalSpacer(comp, 2);
|
createVerticalSpacer(comp, 2);
|
||||||
|
|
||||||
fAutoSoLibButton = new Button(comp, SWT.CHECK ) ;
|
fAutoSoLibButton = new Button(comp, SWT.CHECK ) ;
|
||||||
fAutoSoLibButton.setText("Load shared library symbols automaticly");
|
fAutoSoLibButton.setText("Load shared library symbols automatically");
|
||||||
gd = new GridData();
|
gd = new GridData();
|
||||||
gd.horizontalSpan = 2;
|
gd.horizontalSpan = 2;
|
||||||
fAutoSoLibButton.setLayoutData(gd);
|
fAutoSoLibButton.setLayoutData(gd);
|
||||||
|
|
|
@ -189,7 +189,7 @@ public abstract class AbstractCDebuggerTab extends CLaunchConfigurationTab {
|
||||||
setErrorMessage(null);
|
setErrorMessage(null);
|
||||||
setMessage(null);
|
setMessage(null);
|
||||||
if (getDebugConfig() == null) {
|
if (getDebugConfig() == null) {
|
||||||
setErrorMessage("No debugger avalible");
|
setErrorMessage("No debugger available");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class CorefileDebuggerTab extends AbstractCDebuggerTab {
|
||||||
|
|
||||||
public boolean isValid(ILaunchConfiguration config) {
|
public boolean isValid(ILaunchConfiguration config) {
|
||||||
if ( !validateDebuggerConfig(config) ) {
|
if ( !validateDebuggerConfig(config) ) {
|
||||||
setErrorMessage("No debugger avalible");
|
setErrorMessage("No debugger available");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return super.isValid(config);
|
return super.isValid(config);
|
||||||
|
|
Loading…
Add table
Reference in a new issue