summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-17 09:11:08 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-17 09:11:08 +0100
commitf0d96ab85b324fc1ed3823a64e185b8ebe50c5c0 (patch)
tree716d0b71bca05aac1472aaf76b73901f79bbe59f /accessibility
parent3862204a208143119d3304ef891d591b6da831de (diff)
gridsort: ClearSelection -> SelectAllRows (forgot this client during a previous change)
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/source/extended/AccessibleGridControlTable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTable.cxx b/accessibility/source/extended/AccessibleGridControlTable.cxx
index 49e469675cef..e070426f29a4 100644
--- a/accessibility/source/extended/AccessibleGridControlTable.cxx
+++ b/accessibility/source/extended/AccessibleGridControlTable.cxx
@@ -264,7 +264,7 @@ void SAL_CALL AccessibleGridControlTable::clearAccessibleSelection()
TCSolarGuard aSolarGuard;
::osl::MutexGuard aGuard( getOslMutex() );
ensureIsAlive();
- m_aTable.ClearSelection();
+ m_aTable.SelectAllRows( false );
}
void SAL_CALL AccessibleGridControlTable::selectAllAccessibleChildren()
throw ( uno::RuntimeException )