1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 15:25:49 +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 ) ) 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;
}
} }