1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Bug 335320: NPE when terminating a launch and using the TraceControl view

This commit is contained in:
Marc Khouzam 2011-05-18 02:11:25 +00:00
parent d3e6580734
commit de6f00d9c8

View file

@ -266,7 +266,9 @@ public class TraceControlView extends ViewPart implements IViewPart, SessionEnde
}
}
fStatusText.setText(EMPTY_STRING);
if (fStatusText != null) {
fStatusText.setText(EMPTY_STRING);
}
updateActionEnablement();
}