Kaydet (Commit) 96441419 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

CalcRowData can be passed as a const reference.

Change-Id: I20b6efe27d179ee5ace7dd3ead87a563b25973a8
üst 71ed03b9
......@@ -161,7 +161,7 @@ protected:
};
void FillRowDataFromCacheTable(sal_Int32 nRow, const ScDPFilteredCache& rCacheTable, const CalcInfo& rInfo, CalcRowData& rData);
void ProcessRowData(CalcInfo& rInfo, CalcRowData& rData, bool bAutoShow);
void ProcessRowData(CalcInfo& rInfo, const CalcRowData& rData, bool bAutoShow);
void CalcResultsFromCacheTable(const ScDPFilteredCache& rCacheTable, CalcInfo& rInfo, bool bAutoShow);
private:
......
......@@ -176,7 +176,7 @@ void ScDPTableData::FillRowDataFromCacheTable(sal_Int32 nRow, const ScDPFiltered
}
}
void ScDPTableData::ProcessRowData(CalcInfo& rInfo, CalcRowData& rData, bool bAutoShow)
void ScDPTableData::ProcessRowData(CalcInfo& rInfo, const CalcRowData& rData, bool bAutoShow)
{
if (!bAutoShow)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment