Index: ossp-pkg/as/as-gui/as_table.h RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_table.h,v rcsdiff -q -kk '-r1.18' '-r1.19' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_table.h,v' 2>/dev/null --- as_table.h 2004/05/27 21:48:41 1.18 +++ as_table.h 2004/08/24 21:48:29 1.19 @@ -77,7 +77,7 @@ // Overridden accessors void setText(int, int, const QString &); void sortColumn(int nCol, bool bAscend = true, bool bWhole = true); -// virtual QTableItem *item(int nRow, int nCol) const {QTable::item(nRow, nCol);}; +// virtual QTableItem *item(int nRow, int nCol) const {return QTable::item(nRow, nCol);}; // Deny a cell special handling of the focus rectangle // by overriding class QTable's paintFocus method @@ -86,6 +86,9 @@ // Override for special linewise shading according to sort key virtual void paintCell(QPainter *, int, int, const QRect &, bool, const QColorGroup &); + // Override to properly handle read only attribute during edition + virtual void endEdit(int, int, bool, bool); + // For special focus handling on return key in edit mode virtual void activateNextCell(void);