summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/bigrange.hxx24
-rw-r--r--sc/inc/colcontainer.hxx1
-rw-r--r--sc/inc/colorscale.hxx2
-rw-r--r--sc/inc/table.hxx1
4 files changed, 0 insertions, 28 deletions
diff --git a/sc/inc/bigrange.hxx b/sc/inc/bigrange.hxx
index 8fc3aaf33a76..b4423c6c9a47 100644
--- a/sc/inc/bigrange.hxx
+++ b/sc/inc/bigrange.hxx
@@ -59,7 +59,6 @@ public:
void GetVars( sal_Int32& nColP, sal_Int32& nRowP, sal_Int32& nTabP ) const
{ nColP = nCol; nRowP = nRow; nTabP = nTab; }
- inline void PutInOrder( ScBigAddress& r );
bool IsValid( const ScDocument* pDoc ) const;
inline ScAddress MakeAddress() const;
@@ -73,29 +72,6 @@ public:
{ return !operator==( r ); }
};
-inline void ScBigAddress::PutInOrder( ScBigAddress& r )
-{
- sal_Int32 nTmp;
- if ( r.nCol < nCol )
- {
- nTmp = r.nCol;
- r.nCol = nCol;
- nCol = nTmp;
- }
- if ( r.nRow < nRow )
- {
- nTmp = r.nRow;
- r.nRow = nRow;
- nRow = nTmp;
- }
- if ( r.nTab < nTab )
- {
- nTmp = r.nTab;
- r.nTab = nTab;
- nTab = nTmp;
- }
-}
-
inline ScAddress ScBigAddress::MakeAddress() const
{
SCCOL nColA;
diff --git a/sc/inc/colcontainer.hxx b/sc/inc/colcontainer.hxx
index 68a5c4eaa785..1a2e9d43aa9d 100644
--- a/sc/inc/colcontainer.hxx
+++ b/sc/inc/colcontainer.hxx
@@ -55,7 +55,6 @@ public:
return static_cast<SCCOL>( aCols.size() );
}
- bool ColumnExists( SCCOL nColIdx ) const;
void Clear();
};
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 940d96d5a7d7..cbe45b4ee876 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -74,8 +74,6 @@ public:
ScColorScaleEntryType GetType() const { return meType;}
void SetType( ScColorScaleEntryType eType );
-
- bool NeedsRepaint() const;
};
namespace databar
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index b6e69c172e5b..a284d275d0c6 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -911,7 +911,6 @@ public:
SvtBroadcaster* GetBroadcaster( SCCOL nCol, SCROW nRow );
const SvtBroadcaster* GetBroadcaster( SCCOL nCol, SCROW nRow ) const;
void DeleteBroadcasters( sc::ColumnBlockPosition& rBlockPos, SCCOL nCol, SCROW nRow1, SCROW nRow2 );
- bool HasBroadcaster( SCCOL nCol ) const;
void FillMatrix( ScMatrix& rMat, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, svl::SharedStringPool* pPool = nullptr ) const;