# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: openide.explorer/src/org/openide/explorer/propertysheet/PropertyEnv.java --- openide.explorer/src/org/openide/explorer/propertysheet/PropertyEnv.java Base (BASE) +++ openide.explorer/src/org/openide/explorer/propertysheet/PropertyEnv.java Locally Modified (Based On LOCAL) @@ -51,6 +51,8 @@ import java.beans.VetoableChangeSupport; import java.util.logging.Level; import java.util.logging.Logger; +import org.openide.DialogDisplayer; +import org.openide.NotifyDescriptor; import org.openide.explorer.propertysheet.InplaceEditor.Factory; @@ -262,7 +264,8 @@ getChange().firePropertyChange(PROP_STATE, null, newState); } catch (PropertyVetoException pve) { // and notify the user that the change cannot happen - PropertyDialogManager.notify(pve); + DialogDisplayer.getDefault().notify( + new NotifyDescriptor.Message(pve.getLocalizedMessage(), NotifyDescriptor.WARNING_MESSAGE)); } }