|
From: Christopher W. <caw...@us...> - 2006-02-10 19:51:04
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9348/src/org/rubypeople/rdt/internal/ui Modified Files: RdtPerspectiveFactory.java Log Message: add shortcut for File > New to new Class wizard Index: RdtPerspectiveFactory.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RdtPerspectiveFactory.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RdtPerspectiveFactory.java 6 Mar 2005 17:14:20 -0000 1.7 --- RdtPerspectiveFactory.java 10 Feb 2006 19:50:54 -0000 1.8 *************** *** 46,53 **** layout.addShowViewShortcut(IPageLayout.ID_RES_NAV); ! // new actions - Java project creation wizard ! layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder");//$NON-NLS-1$ ! layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.file");//$NON-NLS-1$ ! } } \ No newline at end of file --- 46,55 ---- layout.addShowViewShortcut(IPageLayout.ID_RES_NAV); ! // new actions - Ruby project creation wizard ! layout.addNewWizardShortcut("org.rubypeople.rdt.ui.wizards.RubyNewClassWizard"); //$NON-NLS-1$ ! layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder");//$NON-NLS-1$ ! layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.file");//$NON-NLS-1$ ! layout.addNewWizardShortcut("org.eclipse.ui.editors.wizards.UntitledTextFileWizard");//$NON-NLS-1$ ! } } \ No newline at end of file |