mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +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);
|
||||
|
||||
fAutoSoLibButton = new Button(comp, SWT.CHECK ) ;
|
||||
fAutoSoLibButton.setText("Load shared library symbols automaticly");
|
||||
fAutoSoLibButton.setText("Load shared library symbols automatically");
|
||||
gd = new GridData();
|
||||
gd.horizontalSpan = 2;
|
||||
fAutoSoLibButton.setLayoutData(gd);
|
||||
|
|
|
@ -189,7 +189,7 @@ public abstract class AbstractCDebuggerTab extends CLaunchConfigurationTab {
|
|||
setErrorMessage(null);
|
||||
setMessage(null);
|
||||
if (getDebugConfig() == null) {
|
||||
setErrorMessage("No debugger avalible");
|
||||
setErrorMessage("No debugger available");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ public class CorefileDebuggerTab extends AbstractCDebuggerTab {
|
|||
|
||||
public boolean isValid(ILaunchConfiguration config) {
|
||||
if ( !validateDebuggerConfig(config) ) {
|
||||
setErrorMessage("No debugger avalible");
|
||||
setErrorMessage("No debugger available");
|
||||
return false;
|
||||
}
|
||||
return super.isValid(config);
|
||||
|
|
Loading…
Add table
Reference in a new issue