summaryrefslogtreecommitdiff
path: root/accessibility/source/extended
diff options
context:
space:
mode:
authorMihaela Kedikova <misheto@openoffice.org>2009-11-04 13:00:05 +0000
committerMihaela Kedikova <misheto@openoffice.org>2009-11-04 13:00:05 +0000
commit7aa219243ee1f723b078ee7405337e7684140941 (patch)
treea9d3dc9a8dfc030c2125ab234ca761cbd4329d3d /accessibility/source/extended
parentf9567d29bf2c463ab847c8210b59bdd84baadb31 (diff)
fixes for i106470
Diffstat (limited to 'accessibility/source/extended')
-rwxr-xr-xaccessibility/source/extended/AccessibleGridControlTable.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTable.cxx b/accessibility/source/extended/AccessibleGridControlTable.cxx
index fd46c759711c..ba6c229e2dc5 100755
--- a/accessibility/source/extended/AccessibleGridControlTable.cxx
+++ b/accessibility/source/extended/AccessibleGridControlTable.cxx
@@ -209,6 +209,7 @@ sal_Bool SAL_CALL AccessibleGridControlTable::isAccessibleRowSelected( sal_Int32
//ensureIsAlive();
//ensureIsValidRow( nRow );
//return implIsRowSelected( nRow );
+ (void) nRow;
return sal_False;
}
@@ -307,7 +308,7 @@ AccessibleGridControlTable::getSelectedAccessibleChild( sal_Int32 nSelectedChild
TCSolarGuard aSolarGuard;
::osl::MutexGuard aGuard( getOslMutex() );
ensureIsAlive();
-
+ (void)nSelectedChildIndex;
// method may throw lang::IndexOutOfBoundsException
//sal_Int32 nIndex = implGetChildIndexFromSelectedIndex( nSelectedChildIndex );
//return implGetChild( nIndex, implToVCLColumnPos( nIndex ) );
@@ -374,6 +375,8 @@ Rectangle AccessibleGridControlTable::implGetBoundingBoxOnScreen()
Reference< XAccessible > AccessibleGridControlTable::implGetChild(
sal_Int32 nRow, sal_uInt16 nColumnPos )
{
+ (void)nRow;
+ (void)nColumnPos;
return NULL;
}
//To Do - not implemented yet