Skip to content

Commit

Permalink
- Summary:
Browse files Browse the repository at this point in the history
	"'*' alredy exists." is shown when new a report with the same name of a folder under the same project
- Bugzilla Bug(s) Resolved:
	None
- Description:
	fixed.
- Tests Description:
	Manual Test
- Code Reviewer:
	None
- Files Added:
	None
- Files Edited:
	/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/NewLibraryWizardAdapterFactory.java
	/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/WizardNewReportCreationPage.java
- Files Deleted:
	None
- Notes to Build Team:
	None
- Notes to Developers:
	None
- Notes to QA:
	None
- Notes to Documentation:
	None
  • Loading branch information
Dazheng Gao committed Jul 13, 2010
1 parent ad71527 commit bdac27e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -116,6 +116,7 @@ public NewLibraryCreationPage( String pageName,
IStructuredSelection selection )
{
super( pageName, selection );
super.setFileExtension( fileExtension );
}

protected void createAdvancedControls( Composite parent )
Expand Down
Expand Up @@ -61,7 +61,7 @@ public WizardNewReportCreationPage( String pageName,
IStructuredSelection selection, String fileType )
{
this( pageName, selection );

super.setFileExtension( fileType );
fileExtension = fileType;
}

Expand Down

0 comments on commit bdac27e

Please sign in to comment.