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 210327
Collapse All | Expand All

(-)d1mset/rtmf/src/main/packages/org/netbeans/swing/outline/EventBroadcaster.java (-2 / +2 lines)
Lines 621-627 Link Here
621
                    case NODES_REMOVED :
621
                    case NODES_REMOVED :
622
                        return new TableModelEvent[] {
622
                        return new TableModelEvent[] {
623
                            new TableModelEvent (getModel(), row, row,
623
                            new TableModelEvent (getModel(), row, row,
624
                              0, TableModelEvent.UPDATE)
624
                              TableModelEvent.ALL_COLUMNS, TableModelEvent.UPDATE)
625
                        };
625
                        };
626
                    default: 
626
                    default: 
627
                        assert false : "Unknown event type " + type;
627
                        assert false : "Unknown event type " + type;
Lines 731-737 Link Here
731
        //TODO - does not need to be ALL_COLUMNS, but we need a way to determine
731
        //TODO - does not need to be ALL_COLUMNS, but we need a way to determine
732
        //which column index is the tree
732
        //which column index is the tree
733
        result = new TableModelEvent (getModel(), first, last, 
733
        result = new TableModelEvent (getModel(), first, last, 
734
            0/*TableModelEvent.ALL_COLUMNS*/, TableModelEvent.UPDATE);
734
            TableModelEvent.ALL_COLUMNS, TableModelEvent.UPDATE);
735
        
735
        
736
        return result;
736
        return result;
737
    }
737
    }

Return to bug 210327