Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 273814

Summary: The ampersand (&) character is hidden in Group title
Product: [RT] RAP Reporter: Emmanuel Marchal <emmanuel.marchal>
Component: RWTAssignee: Project Inbox <rap-inbox>
Status: RESOLVED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: 1.2   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Emmanuel Marchal CLA 2009-04-27 06:26:51 EDT
Build ID: I20080617-2000

Steps To Reproduce:
1. Create a group = new Group(parent,SWT.NONE);
2. Set a text containing '&': group.setText("test & test");
Comment 1 Ralf Sternberg CLA 2009-04-27 08:01:28 EDT
This is intended. The ampersand character is used for mnemonics, see Javadoc of the setText() method. Use group.setText( "test && test" ) instead.