summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLExportSharedData.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-25 11:21:11 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-25 15:57:28 +0000
commit5b9fe6b10cbf1f1047618e6a02e4abcd9a4c1297 (patch)
tree829a1879440928ad5300ecc20f581af565477ae1 /sc/source/filter/xml/XMLExportSharedData.cxx
parent45743c1985ee3a7c32b74ef75c532b1c49448512 (diff)
remove empty method
Diffstat (limited to 'sc/source/filter/xml/XMLExportSharedData.cxx')
-rw-r--r--sc/source/filter/xml/XMLExportSharedData.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/XMLExportSharedData.cxx b/sc/source/filter/xml/XMLExportSharedData.cxx
index a3e4d3ae80b5..1e7b3e506cc5 100644
--- a/sc/source/filter/xml/XMLExportSharedData.cxx
+++ b/sc/source/filter/xml/XMLExportSharedData.cxx
@@ -69,7 +69,7 @@ void ScMySharedData::SetLastColumn(const sal_Int32 nTable, const sal_Int32 nCol)
if(nCol > nLastColumns[nTable]) nLastColumns[nTable] = nCol;
}
-sal_Int32 ScMySharedData::GetLastColumn(const sal_Int32 nTable)
+sal_Int32 ScMySharedData::GetLastColumn(const sal_Int32 nTable) const
{
return nLastColumns[nTable];
}
@@ -79,7 +79,7 @@ void ScMySharedData::SetLastRow(const sal_Int32 nTable, const sal_Int32 nRow)
if(nRow > nLastRows[nTable]) nLastRows[nTable] = nRow;
}
-sal_Int32 ScMySharedData::GetLastRow(const sal_Int32 nTable)
+sal_Int32 ScMySharedData::GetLastRow(const sal_Int32 nTable) const
{
return nLastRows[nTable];
}