summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-06-14 23:43:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-06-15 15:41:13 +0100
commit9bf2d51927c3ac87b32b996a65bd30618b4ce58c (patch)
treea83e3fa81029982c5c5d311bff401eae54f52e66 /sc/inc
parentf03a3edf2523c208948059861e0df48567834d0d (diff)
callcatcher: chainsaw out some unnecessary code
Change-Id: I88de7a942fbc9e0c51a3261236f5203f037d2392
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/cell.hxx3
-rw-r--r--sc/inc/column.hxx1
-rw-r--r--sc/inc/document.hxx1
-rw-r--r--sc/inc/nameuno.hxx2
-rw-r--r--sc/inc/rangenam.hxx2
-rw-r--r--sc/inc/table.hxx2
-rw-r--r--sc/inc/typedstrdata.hxx1
7 files changed, 1 insertions, 11 deletions
diff --git a/sc/inc/cell.hxx b/sc/inc/cell.hxx
index de4d1ad7e72b..949908404ce7 100644
--- a/sc/inc/cell.hxx
+++ b/sc/inc/cell.hxx
@@ -188,7 +188,7 @@ public:
#ifdef USE_MEMPOOL
DECL_FIXEDMEMPOOL_NEWDEL( ScValueCell )
#endif
- ScValueCell();
+
explicit ScValueCell( double fValue );
#if OSL_DEBUG_LEVEL > 0
@@ -433,7 +433,6 @@ public:
bool TestTabRefAbs(SCTAB nTable);
void UpdateCompile( bool bForceIfNameInUse = false );
void FindRangeNamesInUse(std::set<sal_uInt16>& rIndexes) const;
- void ReplaceRangeNamesInUse( const ScRangeData::IndexMap& rMap );
bool IsSubTotal() const { return bSubTotal; }
bool IsChanged() const;
void ResetChanged();
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 446f4de5e4e9..7fd5be7dd033 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -292,7 +292,6 @@ public:
void SetTabNo(SCTAB nNewTab);
void FindRangeNamesInUse(SCROW nRow1, SCROW nRow2, std::set<sal_uInt16>& rIndexes) const;
- void ReplaceRangeNamesInUse( SCROW nRow1, SCROW nRow2, const ScRangeData::IndexMap& rMap );
const SfxPoolItem* GetAttr( SCROW nRow, sal_uInt16 nWhich ) const;
const ScPatternAttr* GetPattern( SCROW nRow ) const;
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 6ae7572d5b64..b4df35bac059 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1197,7 +1197,6 @@ public:
SC_DLLPUBLIC sal_uLong AddCondFormat( ScConditionalFormat* pNew, SCTAB nTab );
void DeleteConditionalFormat( sal_uLong nIndex, SCTAB nTab );
- SC_DLLPUBLIC void FindConditionalFormat( sal_uLong nKey, SCTAB nTab, ScRangeList& rRanges );
SC_DLLPUBLIC void FindConditionalFormat( sal_uLong nKey, ScRangeList& rRanges, SCTAB nTab );
void ConditionalChanged( sal_uLong nKey, SCTAB nTab );
diff --git a/sc/inc/nameuno.hxx b/sc/inc/nameuno.hxx
index ee66e26f648d..97befcb22aef 100644
--- a/sc/inc/nameuno.hxx
+++ b/sc/inc/nameuno.hxx
@@ -163,8 +163,6 @@ public:
throw(::com::sun::star::uno::RuntimeException);
static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId();
- static ScNamedRangeObj* getImplementation( const com::sun::star::uno::Reference<
- com::sun::star::uno::XInterface> xObj );
// XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName()
diff --git a/sc/inc/rangenam.hxx b/sc/inc/rangenam.hxx
index 4e9606316ebf..d3703284fa36 100644
--- a/sc/inc/rangenam.hxx
+++ b/sc/inc/rangenam.hxx
@@ -154,8 +154,6 @@ public:
void ValidateTabRefs();
- void ReplaceRangeNamesInUse( const IndexMap& rMap );
-
static void MakeValidName( String& rName );
SC_DLLPUBLIC static bool IsNameValid( const String& rName, ScDocument* pDoc );
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 78cd9779eb1a..95ab430ed5b3 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -479,8 +479,6 @@ public:
void SetTabNo(SCTAB nNewTab);
void FindRangeNamesInUse(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
std::set<sal_uInt16>& rIndexes) const;
- void ReplaceRangeNamesInUse(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
- const ScRangeData::IndexMap& rMap );
void Fill( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
sal_uLong nFillCount, FillDir eFillDir, FillCmd eFillCmd, FillDateCmd eFillDateCmd,
double nStepValue, double nMaxValue, ScProgress* pProgress);
diff --git a/sc/inc/typedstrdata.hxx b/sc/inc/typedstrdata.hxx
index e33d16ae3110..15098451e125 100644
--- a/sc/inc/typedstrdata.hxx
+++ b/sc/inc/typedstrdata.hxx
@@ -52,7 +52,6 @@ public:
bool IsStrData() const;
SC_DLLPUBLIC const rtl::OUString& GetString() const;
- double GetValue() const;
StringType GetStringType() const;
struct LessCaseSensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>