diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2025-01-23 13:40:00 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2025-01-24 07:37:22 +0100 |
commit | 8f22441d5eb06d134bc12a51da632880a998634e (patch) | |
tree | 53b6a8444cbe3d035270deb8add64323923cdac6 /toolkit | |
parent | ba0d9c0f3f6ddcd4a783f886702c825c3728be59 (diff) |
toolkit: Drop obsolete SVTXGridControl TODO
commit e8f649b5ad64a2a3f07dfab1a52033d126da211b
Author: Frank Schoenheit [fs] <frank.schoenheit@oracle.com>
Date: Wed Jan 19 11:11:29 2011 +0100
gridsort: render indicator for current column sort
replaced the previous `pTable->Invalidate();` with
pTable->getTableControlInterface().invalidate( TableAreaRowHeaders );
, which should have implemented what the TODO was
suggesting (invalidate the header area only).
Change-Id: Iae9f8cee75d25ce982597e0da654357ec8c03692
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180658
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/svtxgridcontrol.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/toolkit/source/controls/svtxgridcontrol.cxx b/toolkit/source/controls/svtxgridcontrol.cxx index f63151e0d472..6cd34bef8bca 100644 --- a/toolkit/source/controls/svtxgridcontrol.cxx +++ b/toolkit/source/controls/svtxgridcontrol.cxx @@ -631,7 +631,6 @@ void SAL_CALL SVTXGridControl::rowHeadingChanged( const GridDataEvent& ) VclPtr< TableControl > pTable = GetAsDynamic< TableControl >(); ENSURE_OR_RETURN_VOID( pTable, "SVTXGridControl::rowHeadingChanged: no control (anymore)!" ); - // TODO: we could do better than this - invalidate the header area only pTable->invalidate(TableArea::RowHeaders); } |