mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +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
|
* src/.../internal/ui/CElementLabelProvider.java
|
||||||
change cpu display string to use isLittleEndian method on IBinary
|
change cpu display string to use isLittleEndian method on IBinary
|
||||||
|
|
||||||
|
|
|
@ -184,8 +184,10 @@ public class CUIPlugin extends AbstractUIPlugin {
|
||||||
}
|
}
|
||||||
if (fImageDescriptorRegistry != null)
|
if (fImageDescriptorRegistry != null)
|
||||||
fImageDescriptorRegistry.dispose();
|
fImageDescriptorRegistry.dispose();
|
||||||
fBuildConsoleManager.shutdown();
|
if ( fBuildConsoleManager != null ) {
|
||||||
fBuildConsoleManager = null;
|
fBuildConsoleManager.shutdown();
|
||||||
|
fBuildConsoleManager = null;
|
||||||
|
}
|
||||||
super.shutdown();
|
super.shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue