summaryrefslogtreecommitdiff
path: root/sc/source/core/data/table3.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-11-14 15:04:41 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2011-11-14 17:05:59 -0500
commit3b58e5871f6da7be54dad5c1da1c0f0a8378ad73 (patch)
tree1db0e1be5a2fd00997b542476b894736c161f387 /sc/source/core/data/table3.cxx
parent05dc62da44f0853bebf68e6f6c695900090a15ba (diff)
Marking methods const where possible.
Diffstat (limited to 'sc/source/core/data/table3.cxx')
-rw-r--r--sc/source/core/data/table3.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index 598a833325bd..a7604dd8ca37 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -1081,7 +1081,7 @@ bool isQueryByValue(
}
std::pair<bool,bool> compareByValue(
- ScDocument& rDoc, ScTable& rTab, const ScBaseCell* pCell, SCCOL nCol, SCROW nRow,
+ const ScDocument& rDoc, const ScTable& rTab, const ScBaseCell* pCell, SCCOL nCol, SCROW nRow,
const ScQueryEntry& rEntry, const ScQueryEntry::Item& rItem, bool* pbTestEqualCondition)
{
bool bOk = false;
@@ -1237,7 +1237,7 @@ bool isTestRegExp(const ScQueryParam& rParam, const ScQueryEntry& rEntry, bool*
}
std::pair<bool,bool> compareByString(
- ScDocument& rDoc, ScTable& rTab, ScBaseCell* pCell, SCROW nRow,
+ const ScDocument& rDoc, const ScTable& rTab, ScBaseCell* pCell, SCROW nRow,
const ScQueryParam& rParam, const ScQueryEntry& rEntry, const ScQueryEntry::Item& rItem, bool bMatchWholeCell,
::utl::TransliterationWrapper* pTransliteration, CollatorWrapper* pCollator,
bool* pbTestEqualCondition)
@@ -1254,7 +1254,7 @@ std::pair<bool,bool> compareByString(
if (pCell->GetCellType() != CELLTYPE_NOTE)
{
sal_uLong nFormat = rTab.GetNumberFormat( static_cast<SCCOL>(rEntry.nField), nRow );
- ScCellFormat::GetInputString( pCell, nFormat, aCellStr, *(rDoc.GetFormatTable()) );
+ ScCellFormat::GetInputString(pCell, nFormat, aCellStr, *rDoc.GetFormatTable());
}
}
else