Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 279786
Collapse All | Expand All

(-)src/org/eclipse/datatools/sqltools/data/internal/ui/editor/TableDataEditor.java (+1 lines)
Lines 312-317 Link Here
312
    public void doDelete() {
312
    public void doDelete() {
313
        IRowData row = getRow();
313
        IRowData row = getRow();
314
        if (row!=null) {
314
        if (row!=null) {
315
            dirtyBackgroundSet.remove(cursor.getRow());
315
	        tableData.deleteRow(row);
316
	        tableData.deleteRow(row);
316
	        tableViewer.remove(row);
317
	        tableViewer.remove(row);
317
	        setDirty(true);
318
	        setDirty(true);

Return to bug 279786