Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 236 Details for
Bug 7017
New project location dialog misleading
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Fix for bug 7017 (Misleading project creation wizard)
bug_7017_fix (text/plain), 4.63 KB, created by
Ryan Cooper
on 2002-01-18 15:12:20 EST
(
hide
)
Description:
Fix for bug 7017 (Misleading project creation wizard)
Filename:
MIME Type:
Creator:
Ryan Cooper
Created:
2002-01-18 15:12:20 EST
Size:
4.63 KB
patch
obsolete
>Index: .vcm_meta >=================================================================== >RCS file: /home/eclipse/org.eclipse.ui/.vcm_meta,v >retrieving revision 1.1 >diff -u -r1.1 .vcm_meta >--- .vcm_meta 23 May 2001 16:39:47 -0000 1.1 >+++ .vcm_meta 18 Jan 2002 19:58:31 -0000 >@@ -1,6 +1,13 @@ > <?xml version="1.0" encoding="UTF-8"?> > <project-description> >+ <comment></comment> > <nature id="org.eclipse.jdt.core.javanature"/> >+ <reference project-name="org.eclipse.core.resources"/> >+ <reference project-name="org.apache.xerces"/> >+ <reference project-name="org.eclipse.help"/> >+ <reference project-name="org.eclipse.swt"/> >+ <reference project-name="org.eclipse.core.runtime"/> >+ <reference project-name="org.eclipse.core.boot"/> > <builder name="org.eclipse.jdt.core.javabuilder"> > </builder> > </project-description> >Index: Eclipse UI/org/eclipse/ui/messages.properties >=================================================================== >RCS file: /home/eclipse/org.eclipse.ui/Eclipse UI/org/eclipse/ui/messages.properties,v >retrieving revision 1.63 >diff -u -r1.63 messages.properties >--- Eclipse UI/org/eclipse/ui/messages.properties 15 Jan 2002 15:30:32 -0000 1.63 >+++ Eclipse UI/org/eclipse/ui/messages.properties 18 Jan 2002 19:58:31 -0000 >@@ -392,8 +392,11 @@ > WizardNewProjectCreationPage.projectNameEmpty = Project name must be specified > WizardNewProjectCreationPage.projectExistsMessage = Project already exists. > WizardNewProjectCreationPage.useDefaultLabel = Use &default location >+WizardNewProjectCreationPage.useDefaultLocationLabel = Use &default > WizardNewProjectCreationPage.nameLabel = &Project name: > WizardNewProjectCreationPage.directoryLabel = Select the location directory. >+WizardNewProjectCreationPage.projectContentsLabel = &Project contents: >+WizardNewProjectCreationPage.projectLocationLabel = &Directory: > WizardNewProjectCreationPage.locationLabel = &Location: > WizardNewProjectCreationPage.browseLabel = B&rowse... > WizardNewProjectReferences.title = &Referenced projects: >Index: Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java,v >retrieving revision 1.6 >diff -u -r1.6 WizardNewProjectCreationPage.java >--- Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java 9 Jan 2002 16:53:39 -0000 1.6 >+++ Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java 18 Jan 2002 19:58:32 -0000 >@@ -110,8 +110,16 @@ > projectGroup.setLayout(layout); > projectGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); > >+ // new project label >+ Label projectContentsLabel = new Label(projectGroup,SWT.NONE); >+ projectContentsLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectContentsLabel")); //$NON-NLS-1$ >+ >+ GridData labelData = new GridData(); >+ labelData.horizontalSpan = 3; >+ projectContentsLabel.setLayoutData(labelData); >+ > final Button useDefaultsButton = new Button(projectGroup, SWT.CHECK | SWT.RIGHT); >- useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLabel")); //$NON-NLS-1$ >+ useDefaultsButton.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.useDefaultLocationLabel")); //$NON-NLS-1$ > useDefaultsButton.setSelection(this.useDefaults); > > GridData buttonData = new GridData(); >@@ -172,7 +180,7 @@ > > // location label > locationLabel = new Label(projectGroup,SWT.NONE); >- locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.locationLabel")); //$NON-NLS-1$ >+ locationLabel.setText(WorkbenchMessages.getString("WizardNewProjectCreationPage.projectLocationLabel")); //$NON-NLS-1$ > locationLabel.setEnabled(enabled); > > // project location entry field >Index: Eclipse UI/org/eclipse/ui/internal/PerspectiveComboBox.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PerspectiveComboBox.java,v >retrieving revision 1.3 >diff -u -r1.3 PerspectiveComboBox.java >--- Eclipse UI/org/eclipse/ui/internal/PerspectiveComboBox.java 17 Dec 2001 17:09:46 -0000 1.3 >+++ Eclipse UI/org/eclipse/ui/internal/PerspectiveComboBox.java 18 Jan 2002 19:58:32 -0000 >@@ -99,7 +99,8 @@ > IPerspectiveDescriptor activePersp = page.getPerspective(); > > // Fill the combo box. >- ArrayList perspArray = getMruShortcuts(); >+ ArrayList perspArray = getMruShortcuts(); >+ > for (int nX = 0; nX < perspArray.size(); nX ++) { > IPerspectiveDescriptor persp = (IPerspectiveDescriptor)perspArray.get(nX); > combo.add(persp.getLabel());
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 7017
: 236