diff options
author | Mihaela Kedikova <misheto@openoffice.org> | 2009-11-05 07:05:41 +0000 |
---|---|---|
committer | Mihaela Kedikova <misheto@openoffice.org> | 2009-11-05 07:05:41 +0000 |
commit | d5419d602489de7df1d9eccd2cbb03c33302f38b (patch) | |
tree | f7d755af62c9036b2ec315984efe93aebe2adf8a /svtools/source/table | |
parent | 91067556c846928cfa254e05274dc1bd9fc9d3a4 (diff) |
fixes for i106470
Diffstat (limited to 'svtools/source/table')
-rw-r--r-- | svtools/source/table/tablecontrol.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx index 521b1ad819f9..1d7b046ae94b 100644 --- a/svtools/source/table/tablecontrol.cxx +++ b/svtools/source/table/tablecontrol.cxx @@ -514,6 +514,7 @@ void TableControl::commitGridControlEvent( sal_Int16 _nEventId, const Any& _rNew // -----------------------------------------------------------------------------
Rectangle TableControl::calcHeaderRect(sal_Bool _bIsColumnBar,BOOL _bOnScreen)
{
+ (void)_bOnScreen;
Rectangle aRectTable, aRectTableWithHeaders;
m_pImpl->impl_getAllVisibleDataCellArea(aRectTable);
m_pImpl->impl_getAllVisibleCellsArea(aRectTableWithHeaders);
@@ -527,6 +528,7 @@ Rectangle TableControl::calcHeaderRect(sal_Bool _bIsColumnBar,BOOL _bOnScreen) // -----------------------------------------------------------------------------
Rectangle TableControl::calcTableRect(BOOL _bOnScreen)
{
+ (void)_bOnScreen;
Rectangle aRect;
m_pImpl->impl_getAllVisibleDataCellArea(aRect);
return aRect;
|