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 297402
Collapse All | Expand All

(-)extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java (+1 lines)
Lines 614-619 Link Here
614
			linkedGroupComposite = new Composite(advancedComposite, 0);
614
			linkedGroupComposite = new Composite(advancedComposite, 0);
615
			data = new GridData(SWT.FILL, SWT.BEGINNING, true, false);
615
			data = new GridData(SWT.FILL, SWT.BEGINNING, true, false);
616
			data.horizontalIndent = indent;
616
			data.horizontalIndent = indent;
617
			linkedGroupComposite.setFont(advancedComposite.getFont());
617
			linkedGroupComposite.setLayoutData(data);
618
			linkedGroupComposite.setLayoutData(data);
618
619
619
			GridLayout layout = new GridLayout();
620
			GridLayout layout = new GridLayout();
(-)src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java (+2 lines)
Lines 365-375 Link Here
365
		data = new GridData(GridData.FILL_HORIZONTAL);
365
		data = new GridData(GridData.FILL_HORIZONTAL);
366
		data.horizontalIndent = indent;
366
		data.horizontalIndent = indent;
367
		resolvedPathGroup.setLayoutData(data);
367
		resolvedPathGroup.setLayoutData(data);
368
		resolvedPathGroup.setFont(locationGroup.getFont());
368
369
369
		resolvedPathLabelText = new Label(resolvedPathGroup, SWT.SINGLE);
370
		resolvedPathLabelText = new Label(resolvedPathGroup, SWT.SINGLE);
370
		resolvedPathLabelText
371
		resolvedPathLabelText
371
				.setText(IDEWorkbenchMessages.CreateLinkedResourceGroup_resolvedPathLabel);
372
				.setText(IDEWorkbenchMessages.CreateLinkedResourceGroup_resolvedPathLabel);
372
		resolvedPathLabelText.setVisible(false);
373
		resolvedPathLabelText.setVisible(false);
374
		resolvedPathLabelText.setFont(locationGroup.getFont());
373
375
374
		resolvedPathLabelData = new Label(resolvedPathGroup, SWT.SINGLE);
376
		resolvedPathLabelData = new Label(resolvedPathGroup, SWT.SINGLE);
375
		data = new GridData(GridData.FILL_HORIZONTAL);
377
		data = new GridData(GridData.FILL_HORIZONTAL);
(-)src/org/eclipse/ui/internal/ide/dialogs/FileSystemSelectionArea.java (+2 lines)
Lines 51-58 Link Here
51
51
52
		fileSystemTitle = new Label(composite, SWT.NONE);
52
		fileSystemTitle = new Label(composite, SWT.NONE);
53
		fileSystemTitle.setText(FileSystemMessages.FileSystemSelection_title);
53
		fileSystemTitle.setText(FileSystemMessages.FileSystemSelection_title);
54
		fileSystemTitle.setFont(composite.getFont());
54
55
55
		fileSystems = new ComboViewer(composite, SWT.READ_ONLY);
56
		fileSystems = new ComboViewer(composite, SWT.READ_ONLY);
57
		fileSystems.getControl().setFont(composite.getFont());
56
58
57
		fileSystems.getControl().setLayoutData(
59
		fileSystems.getControl().setLayoutData(
58
				new GridData(GridData.FILL_HORIZONTAL
60
				new GridData(GridData.FILL_HORIZONTAL
(-)src/org/eclipse/ui/internal/ide/messages.properties (-1 / +1 lines)
Lines 56-62 Link Here
56
editfilters = Resource &Filters...
56
editfilters = Resource &Filters...
57
useDefaultLocation=Use &default location
57
useDefaultLocation=Use &default location
58
createLinkedFolder=Link to alternate location (&Linked Folder)
58
createLinkedFolder=Link to alternate location (&Linked Folder)
59
createVirtualFolder=Folder is not located in the file system (&Virtual Folder)
59
createVirtualFolder=Folder is not located in the file system (Vi&rtual Folder)
60
60
61
# ==============================================================================
61
# ==============================================================================
62
# Workbench Actions
62
# Workbench Actions

Return to bug 297402