Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 336125
Collapse All | Expand All

(-)src/org/eclipse/swt/snippets/Snippet340.java (-1 / +2 lines)
Lines 33-39 Link Here
33
	shell.setLayout(new GridLayout());
33
	shell.setLayout(new GridLayout());
34
	shell.setText("Description Relation Example");
34
	shell.setText("Description Relation Example");
35
	
35
	
36
	final Label liveLabel = new Label(shell, SWT.BORDER);
36
	//final Label liveLabel = new Label(shell, SWT.BORDER);
37
	final Text liveLabel = new Text(shell, SWT.BORDER | SWT.READ_ONLY);
37
	liveLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
38
	liveLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
38
	liveLabel.setText("Live region messages go here");
39
	liveLabel.setText("Live region messages go here");
39
	
40
	

Return to bug 336125