summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-04 10:24:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-05 13:59:05 +0100
commitfe630f3b097ca2bf173f21de77ed1535c767d0b9 (patch)
tree46e0a3de38dd7cdd51f79bb5689e6fdf5a1b64f3 /svx
parent9c2dee67b56085ab8535a90810bf885fe0afd30c (diff)
callcatcher: update list, add README, remove some newly unused code
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/svx/svdotable.hxx2
-rw-r--r--svx/source/table/cell.cxx10
-rw-r--r--svx/source/table/cell.hxx1
-rw-r--r--svx/source/table/svdotable.cxx14
4 files changed, 0 insertions, 27 deletions
diff --git a/svx/inc/svx/svdotable.hxx b/svx/inc/svx/svdotable.hxx
index 543b47654581..70dd0e7312b6 100644
--- a/svx/inc/svx/svdotable.hxx
+++ b/svx/inc/svx/svdotable.hxx
@@ -156,8 +156,6 @@ public:
void setActiveCell( const sdr::table::CellPos& rPos );
void getActiveCellPos( sdr::table::CellPos& rPos ) const;
- sal_Int32 getRowCount() const;
- sal_Int32 getColumnCount() const;
void getCellBounds( const sdr::table::CellPos& rPos, ::Rectangle& rCellRect );
const SfxItemSet& GetActiveCellItemSet() const;
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx
index 0466c02b154c..c3e010d837a0 100644
--- a/svx/source/table/cell.cxx
+++ b/svx/source/table/cell.cxx
@@ -579,16 +579,6 @@ SfxStyleSheet* Cell::GetStyleSheet() const
// -----------------------------------------------------------------------------
-SfxStyleSheetPool* Cell::GetStyleSheetPool() const
-{
- if( mpProperties && mpProperties->GetStyleSheet() )
- return dynamic_cast< SfxStyleSheetPool* >( &mpProperties->GetStyleSheet()->GetPool() );
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
const Rectangle& Cell::GetCurrentBoundRect() const
{
return maCellRect;
diff --git a/svx/source/table/cell.hxx b/svx/source/table/cell.hxx
index 689eea07769f..e9573f45bcfd 100644
--- a/svx/source/table/cell.hxx
+++ b/svx/source/table/cell.hxx
@@ -89,7 +89,6 @@ public:
OutlinerParaObject* GetEditOutlinerParaObject() const;
SVX_DLLPRIVATE void SetStyleSheet( SfxStyleSheet* pStyleSheet, sal_Bool bDontRemoveHardAttr );
SVX_DLLPRIVATE virtual SfxStyleSheet* GetStyleSheet() const;
- SfxStyleSheetPool* GetStyleSheetPool() const;
SVX_DLLPRIVATE virtual const Rectangle& GetCurrentBoundRect() const;
SVX_DLLPRIVATE virtual void TakeTextAnchorRect(Rectangle& rAnchorRect) const;
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index 3f7535f36a08..92d18e48b082 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -1506,20 +1506,6 @@ const CellRef& SdrTableObj::getActiveCell() const
// --------------------------------------------------------------------
-sal_Int32 SdrTableObj::getRowCount() const
-{
- return mpImpl ? mpImpl->getRowCount() : 0;
-}
-
-// --------------------------------------------------------------------
-
-sal_Int32 SdrTableObj::getColumnCount() const
-{
- return mpImpl ? mpImpl->getColumnCount() : 0;
-}
-
-// --------------------------------------------------------------------
-
void SdrTableObj::setActiveCell( const CellPos& rPos )
{
if( mpImpl && mpImpl->mxTable.is() ) try