This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 81214
Collapse All | Expand All

(-)openide/src/org/openide/text/CloneableEditorSupport.java (-1 / +3 lines)
Lines 1783-1789 Link Here
1783
1783
1784
    private final void fireDocumentChange(StyledDocument document, boolean closing) {
1784
    private final void fireDocumentChange(StyledDocument document, boolean closing) {
1785
        fireStateChangeEvent(document, closing);
1785
        fireStateChangeEvent(document, closing);
1786
        firePropertyChange(EditorCookie.Observable.PROP_DOCUMENT, null, null);
1786
        firePropertyChange(EditorCookie.Observable.PROP_DOCUMENT,
1787
                closing ? document : null,
1788
                closing ? null : document);
1787
    }
1789
    }
1788
1790
1789
    /** Fires a status change event to all listeners. */
1791
    /** Fires a status change event to all listeners. */

Return to bug 81214