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 168895 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/internal/bugzilla/ui/editor/KeywordsDialog.java (-3 / +3 lines)
Lines 34-40 Link Here
34
34
35
	public KeywordsDialog(Shell shell, String selectedKeywords, java.util.List<String> validKeywords) {
35
	public KeywordsDialog(Shell shell, String selectedKeywords, java.util.List<String> validKeywords) {
36
		super(shell);
36
		super(shell);
37
37
		setShellStyle(getShellStyle() | SWT.RESIZE);
38
		
39
		
38
		StringTokenizer st = new StringTokenizer(selectedKeywords, ",", false);
40
		StringTokenizer st = new StringTokenizer(selectedKeywords, ",", false);
39
		this.selectedKeywords = new ArrayList<String>();
41
		this.selectedKeywords = new ArrayList<String>();
40
		while (st.hasMoreTokens()) {
42
		while (st.hasMoreTokens()) {
Lines 113-120 Link Here
113
115
114
		keyWordsList.addCheckStateListener(new KeywordListener());
116
		keyWordsList.addCheckStateListener(new KeywordListener());
115
117
116
		super.createDialogArea(parent);
117
118
		parent.pack();
118
		parent.pack();
119
119
120
		return composite;
120
		return composite;

Return to bug 168895