mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 13:35:22 +02:00
[292559] When "Applying" Traditional Memory Rendering Preferences an NPE sometimes occurs
This commit is contained in:
parent
c240e9bc4f
commit
547715d30b
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ public class TraditionalRendering extends AbstractMemoryRendering implements IRe
|
|||
|
||||
public void applyPreferences()
|
||||
{
|
||||
if(!fRendering.isDisposed())
|
||||
if(fRendering != null && !fRendering.isDisposed())
|
||||
{
|
||||
IPreferenceStore store = TraditionalRenderingPlugin.getDefault().getPreferenceStore();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue