summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/grid/grideventforwarder.hxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-13 14:08:36 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-13 14:08:36 +0100
commit4c08b4b3d3b5427ffa843868704e8dd44c8b1826 (patch)
treea06a046c56caea9a3447d3bb61b65290075a80af /toolkit/source/controls/grid/grideventforwarder.hxx
parent6fba3904b909f7604a38e58e2a8ac3d2542a9410 (diff)
gridsort: reworked the notification system for inserted/removed rows
In this course, more code which was in SVTXGridControl was moved to the places it belongs to, effectively meaning that the TableControl has better chances than before to be used outside an SVTXGridControl (though we're not there, yet). Also, the selection-related methods in TableControl/_Impl got some refactoring love, so the implementation details are hidden in the Impl class now, instead of being exposed to an exploited by the TableControl. And while we were there ... The XGridSelection does not provide a |selectColumn| anymore (there was no preparation whatsoever for column selection, anywhere, thus it was a complete dummy.) Also, its de/selectRows methods have been removed: They have questionable use, and make implementation rather difficult, compared with multiple calls to de/selectRow.
Diffstat (limited to 'toolkit/source/controls/grid/grideventforwarder.hxx')
-rwxr-xr-xtoolkit/source/controls/grid/grideventforwarder.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/grid/grideventforwarder.hxx b/toolkit/source/controls/grid/grideventforwarder.hxx
index c0c09a7cc95d..0abdcc59fd85 100755
--- a/toolkit/source/controls/grid/grideventforwarder.hxx
+++ b/toolkit/source/controls/grid/grideventforwarder.hxx
@@ -61,7 +61,7 @@ namespace toolkit
virtual void SAL_CALL release() throw();
// XGridDataListener
- virtual void SAL_CALL rowsAdded( const ::com::sun::star::awt::grid::GridDataEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL rowsInserted( const ::com::sun::star::awt::grid::GridDataEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL rowsRemoved( const ::com::sun::star::awt::grid::GridDataEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL dataChanged( const ::com::sun::star::awt::grid::GridDataEvent& Event ) throw (::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL rowTitleChanged( const ::com::sun::star::awt::grid::GridDataEvent& Event ) throw (::com::sun::star::uno::RuntimeException);