Index: WizardDescriptor.java =================================================================== RCS file: /cvs/openide/src/org/openide/WizardDescriptor.java,v retrieving revision 1.80.4.4 diff -c -r1.80.4.4 WizardDescriptor.java *** WizardDescriptor.java 20 Jun 2003 11:09:19 -0000 1.80.4.4 --- WizardDescriptor.java 8 Aug 2003 09:28:38 -0000 *************** *** 594,601 **** try { showWaitCursor (); boolean alreadyUpdated = false; // enable auto-resizing policy only for fonts bigger thne default ! if (((Font)UIManager.getDefaults().get("controlFont")).getSize() > UIManager.getDefaults().getInt("nbDefaultFontSize")) { Window parentWindow = SwingUtilities.getWindowAncestor((Component)getMessage()); if (parentWindow != null) { --- 594,603 ---- try { showWaitCursor (); boolean alreadyUpdated = false; + //Fix null pointer exception using other pluggable look and feel interfaces + Font controlFont = ((Font)UIManager.getDefaults().get("controlFont")); // enable auto-resizing policy only for fonts bigger thne default ! if ( controlFont !=null && controlFont > UIManager.getDefaults().getInt("nbDefaultFontSize")) { Window parentWindow = SwingUtilities.getWindowAncestor((Component)getMessage()); if (parentWindow != null) {