| Summary: | [Theming] Missing appearance entry warning when running RMS demo | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Ivan Furnadjiev <ivan> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 1.3 | ||
| Target Milestone: | 1.3 M7 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Ivan Furnadjiev
All "external" themeable widgets have this problem: Upload, Hyperlink, FormText The problem is in EngineConfigWrapper#createResourceLoader(Bundle).... FileLocator.find( bundle, path, null ) returns null all the time. Old code works: URL url = bundle.getResource( resourceName ); instead of: IPath path = new Path( resourceName ); URL url = FileLocator.find( bundle, path, null ); Fixed by reverting the ResourceLoader creation in EngineConfigWrapper#registerThemeableWidgets. |