mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-12 10:45:37 +02:00
2003-11-22 Mikhail Khodjaiants
src/org/eclipse/cdt/launch/ui/CSourceLookupTab.java: Dispose 'SourceLookupBlock' when disposing 'CSourceLookupTab'.
This commit is contained in:
parent
92c3026143
commit
49d36fc10e
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-11-22 Mikhail Khodjaiants
|
||||
src/org/eclipse/cdt/launch/ui/CSourceLookupTab.java:
|
||||
Dispose 'SourceLookupBlock' when disposing 'CSourceLookupTab'.
|
||||
|
||||
2003-11-17 Mikhail Khodjaiants
|
||||
src/org/eclipse/cdt/launch/ui/CSourceLookupTab.java:
|
||||
"Search for duplicate source files" option support.
|
||||
|
|
|
@ -155,4 +155,13 @@ public class CSourceLookupTab extends CLaunchConfigurationTab
|
|||
return string == null || string.length() == 0;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#dispose()
|
||||
*/
|
||||
public void dispose()
|
||||
{
|
||||
if ( fBlock != null )
|
||||
fBlock.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue