summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/worksheethelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-18 16:35:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-24 08:27:56 +0000
commit3caf31b05d7bbf3d50a1bbda6c8b95982cb5c2b5 (patch)
treeb281c279936763f21a9f07047246dfdc72e8d4fe /sc/source/filter/inc/worksheethelper.hxx
parent2c8e66129f14c6d0b9174d27546e233b3995d8d4 (diff)
loplugin:unusedmethods in sc
Change-Id: Ic378126a30be853d10fe174c451cee3c6ded404f Reviewed-on: https://gerrit.libreoffice.org/25109 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/source/filter/inc/worksheethelper.hxx')
-rw-r--r--sc/source/filter/inc/worksheethelper.hxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/sc/source/filter/inc/worksheethelper.hxx b/sc/source/filter/inc/worksheethelper.hxx
index 20be70ad824b..a00e4e48c30c 100644
--- a/sc/source/filter/inc/worksheethelper.hxx
+++ b/sc/source/filter/inc/worksheethelper.hxx
@@ -250,7 +250,6 @@ public:
void setVmlDrawingPath( const OUString& rVmlDrawingPath );
/** Extends the used area of this sheet by the passed cell position. */
- void extendUsedArea( const css::table::CellAddress& rAddress );
void extendUsedArea( const ScAddress& rAddress );
/** Extends the used area of this sheet by the passed cell range. */
void extendUsedArea( const css::table::CellRangeAddress& rRange );
@@ -278,19 +277,13 @@ public:
void setRowModel( const RowModel& rModel );
/** Inserts a value cell directly into the Calc sheet. */
- void putValue( const css::table::CellAddress& rAddress, double fValue );
void putValue( const ScAddress& rAddress, double fValue );
/** Inserts a string cell directly into the Calc sheet. */
- void putString( const css::table::CellAddress& rAddress, const OUString& rText );
void putString( const ScAddress& rAddress, const OUString& rText );
/** Inserts a rich-string cell directly into the Calc sheet. */
void putRichString(
- const css::table::CellAddress& rAddress,
- const RichString& rString, const oox::xls::Font* pFirstPortionFont );
-
- void putRichString(
const ScAddress& rAddress,
const RichString& rString, const oox::xls::Font* pFirstPortionFont );
@@ -307,29 +300,19 @@ public:
/** Final import of drawing objects. Has to be called after all content has been imported */
void finalizeDrawingImport();
- void setCellFormula( const css::table::CellAddress& rTokenAddress, const OUString& );
void setCellFormula( const ScAddress& rTokenAddress, const OUString& );
void setCellFormula(
- const css::table::CellAddress& rAddr, sal_Int32 nSharedId,
- const OUString& rCellValue, sal_Int32 nValueType );
- void setCellFormula(
const ScAddress& rAddr, sal_Int32 nSharedId,
const OUString& rCellValue, sal_Int32 nValueType );
- void setCellArrayFormula( const css::table::CellRangeAddress& rRangeAddress, const css::table::CellAddress& rTokenAddress, const OUString& );
void setCellArrayFormula( const css::table::CellRangeAddress& rRangeAddress, const ScAddress& rTokenAddress, const OUString& );
void createSharedFormulaMapEntry(
- const css::table::CellAddress& rAddress,
- sal_Int32 nSharedId, const OUString& rTokens );
- void createSharedFormulaMapEntry(
const ScAddress& rAddress,
sal_Int32 nSharedId, const OUString& rTokens );
void setCellFormulaValue(
- const css::table::CellAddress& rAddress, const OUString& rValueStr, sal_Int32 nCellType );
- void setCellFormulaValue(
const ScAddress& rAddress, const OUString& rValueStr, sal_Int32 nCellType );
private: