1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

[207807] missing !isDisposed() check in Rendering.redrawPanes()

This commit is contained in:
Ted Williams 2007-10-29 16:46:13 +00:00
parent b24b901b33
commit 0d914fc773

View file

@ -1542,7 +1542,7 @@ public class Rendering extends Composite implements IDebugEventSetListener
protected void redrawPanes()
{
if(this.isVisible())
if(!isDisposed() && this.isVisible())
{
if(fAddressPane.isPaneVisible())
{