summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2013-10-24 12:14:10 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2013-10-26 23:01:18 +0200
commit793ec02cc3cd53916e20e5e981662a989eff8a48 (patch)
tree5d929a330d7b5e231a6876897cab3e5f94d967d4 /sc
parent38d13e7066e288b727587756f45ab6a599ca6f91 (diff)
remove now unused ScDocument::GetRowDefault
Change-Id: I35b0a1cd86d1da9f11a9b8d3990eaa1509983243
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/document.hxx5
-rw-r--r--sc/source/core/data/document.cxx5
2 files changed, 2 insertions, 8 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 752984d3dd22..840ecf0be74a 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1550,10 +1550,9 @@ public:
// the row heights are always compared.
SCROW GetNextDifferentChangedRow( SCTAB nTab, SCROW nStart, bool bCareManualSize = true) const;
- // returns whether to export a Default style for this col/row or not
- // nDefault is setted to one possition in the current row/col where the Default style is
+ // returns whether to export a Default style for this col or not
+ // nDefault is setted to one possition in the current row where the Default style is
bool GetColDefault( SCTAB nTab, SCCOL nCol, SCROW nLastRow, SCROW& nDefault);
- bool GetRowDefault( SCTAB nTab, SCROW nRow, SCCOL nLastCol, SCCOL& nDefault);
bool UpdateOutlineCol( SCCOL nStartCol, SCCOL nEndCol, SCTAB nTab, bool bShow );
bool UpdateOutlineRow( SCROW nStartRow, SCROW nEndRow, SCTAB nTab, bool bShow );
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index ccf7d32c9dda..15e7ee5bd03d 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -4386,11 +4386,6 @@ bool ScDocument::GetColDefault( SCTAB nTab, SCCOL nCol, SCROW nLastRow, SCROW& n
return bRet;
}
-bool ScDocument::GetRowDefault( SCTAB /* nTab */, SCROW /* nRow */, SCCOL /* nLastCol */, SCCOL& /* nDefault */ )
-{
- return false;
-}
-
void ScDocument::StripHidden( SCCOL& rX1, SCROW& rY1, SCCOL& rX2, SCROW& rY2, SCTAB nTab )
{
if ( ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab] )