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

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java (-2 / +4 lines)
Lines 141-152 Link Here
141
		dialog.create();
141
		dialog.create();
142
		if (dialog.open() == WizardDialog.OK) {
142
		if (dialog.open() == WizardDialog.OK) {
143
			String id = wizard.getProductId();
143
			String id = wizard.getProductId();
144
			IProduct product = getProduct();
144
			fProductCombo.add(id, 0);
145
			fProductCombo.add(id, 0);
145
			fProductCombo.setText(id);
146
			fProductCombo.setText(id);
146
			getProduct().setId(id);
147
			product.setId(id);
147
			String app = wizard.getApplication();
148
			String app = wizard.getApplication();
148
			fAppCombo.setText(app);
149
			fAppCombo.setText(app);
149
			getProduct().setApplication(app);
150
			product.setApplication(app);
151
			fNameEntry.setValue(product.getName());
150
		}
152
		}
151
	}
153
	}
152
154
(-)src/org/eclipse/pde/internal/ui/wizards/product/ProductDefinitionWizard.java (+2 lines)
Lines 42-47 Link Here
42
			fProductId = fMainPage.getProductId();
42
			fProductId = fMainPage.getProductId();
43
			fPluginId = fMainPage.getDefiningPlugin();
43
			fPluginId = fMainPage.getDefiningPlugin();
44
			fApplication = fMainPage.getApplication();
44
			fApplication = fMainPage.getApplication();
45
			if (fProduct.getName() == null || fProduct.getName().equals(""))
46
				fProduct.setName(fProductId);
45
			getContainer().run(
47
			getContainer().run(
46
					false,
48
					false,
47
					true,
49
					true,

Return to bug 96893