Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 356453 - CheckBox throws an exception on setFont
Summary: CheckBox throws an exception on setFont
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-01 07:21 EDT by Joseph Vincens CLA
Modified: 2017-02-23 14:20 EST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Joseph Vincens CLA 2011-09-01 07:21:21 EDT
the following code is generated
		"setFont": function(font) {
			this.textspan.font = font.ezeUnbox();
		}
in my handler I do
	associateCheck CheckBox{text="Associate", font = "Verdana", color = "white", width=100, margin=10};

The handler generates 
			this.associateCheck.setFont("Verdana");
A literal string is passed to setFont and a literal string does not have the ezeUnbox() function.
Comment 1 Joseph Vincens CLA 2011-09-15 09:24:56 EDT
this is no longer an issue