| Summary: | CaptionedControl problems | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Wolfgang Röckelein <mail> |
| Component: | ERCP | Assignee: | ercp.eswt <ercp.eswt-inbox> |
| Status: | NEW --- | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
CaptionedControl has an error in the focusOutListener which produces an NPE if the event is for a Shell/MobileShell. Code fix suggestion: while(c!=thisControl){ if(c instanceof Shell){ break; }else if(c.getParent() instanceof Shell){ break; }else{ c = c.getParent(); } } In the code exmaples in the comments "ConstraintedText" instead of "ConstrainedText" is used.