1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Removed warnings.

This commit is contained in:
Mikhail Khodjaiants 2003-03-04 17:40:09 +00:00
parent d2d51bde33
commit e3eb9b9461

View file

@ -245,7 +245,7 @@ public class SourceLookupBlock
if ( association.isValidPath( (String)value ) )
{
((CDirectorySourceLocation)entry).setAssociation( association );
fSourceListField.refresh();
getSourceListField().refresh();
updateLaunchConfigurationDialog();
}
}
@ -317,7 +317,7 @@ public class SourceLookupBlock
return false;
}
private void updateLaunchConfigurationDialog()
protected void updateLaunchConfigurationDialog()
{
if ( getLaunchConfigurationDialog() != null )
{
@ -365,4 +365,9 @@ public class SourceLookupBlock
{
fProject = project;
}
public SourceListDialogField getSourceListField()
{
return fSourceListField;
}
}