mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
fixes errors when no compiler info exits
This commit is contained in:
parent
f41ad5443b
commit
0ba89e631c
2 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
2002-11-01
|
||||
2002-11-06 David Inglis
|
||||
* src/.../ui/CUIPlugin.java
|
||||
fixed NPE.
|
||||
|
||||
2002-11-01 David Inglis
|
||||
* src/.../internal/ui/CElementLabelProvider.java
|
||||
change cpu display string to use isLittleEndian method on IBinary
|
||||
|
||||
|
|
|
@ -184,8 +184,10 @@ public class CUIPlugin extends AbstractUIPlugin {
|
|||
}
|
||||
if (fImageDescriptorRegistry != null)
|
||||
fImageDescriptorRegistry.dispose();
|
||||
fBuildConsoleManager.shutdown();
|
||||
fBuildConsoleManager = null;
|
||||
if ( fBuildConsoleManager != null ) {
|
||||
fBuildConsoleManager.shutdown();
|
||||
fBuildConsoleManager = null;
|
||||
}
|
||||
super.shutdown();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue