mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 15:25:49 +02:00
Removed warnings.
This commit is contained in:
parent
d2d51bde33
commit
e3eb9b9461
1 changed files with 7 additions and 2 deletions
|
@ -245,7 +245,7 @@ public class SourceLookupBlock
|
||||||
if ( association.isValidPath( (String)value ) )
|
if ( association.isValidPath( (String)value ) )
|
||||||
{
|
{
|
||||||
((CDirectorySourceLocation)entry).setAssociation( association );
|
((CDirectorySourceLocation)entry).setAssociation( association );
|
||||||
fSourceListField.refresh();
|
getSourceListField().refresh();
|
||||||
updateLaunchConfigurationDialog();
|
updateLaunchConfigurationDialog();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -317,7 +317,7 @@ public class SourceLookupBlock
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateLaunchConfigurationDialog()
|
protected void updateLaunchConfigurationDialog()
|
||||||
{
|
{
|
||||||
if ( getLaunchConfigurationDialog() != null )
|
if ( getLaunchConfigurationDialog() != null )
|
||||||
{
|
{
|
||||||
|
@ -365,4 +365,9 @@ public class SourceLookupBlock
|
||||||
{
|
{
|
||||||
fProject = project;
|
fProject = project;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public SourceListDialogField getSourceListField()
|
||||||
|
{
|
||||||
|
return fSourceListField;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue