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

This can return const reference.

Change-Id: I1cf3e58167b883fee1b8cb32783a7892f6e0faa5
üst 646daee2
...@@ -239,7 +239,7 @@ public: ...@@ -239,7 +239,7 @@ public:
const ScFormulaCell* getFormulaCell() const; const ScFormulaCell* getFormulaCell() const;
double getValue() const; double getValue() const;
ScCellValue getCellValue() const; ScCellValue getCellValue() const;
ScRefCellValue getRefCellValue() const; const ScRefCellValue& getRefCellValue() const;
bool hasString() const; bool hasString() const;
bool hasNumeric() const; bool hasNumeric() const;
......
...@@ -1131,7 +1131,7 @@ ScCellValue ScCellIterator::getCellValue() const ...@@ -1131,7 +1131,7 @@ ScCellValue ScCellIterator::getCellValue() const
return aRet; return aRet;
} }
ScRefCellValue ScCellIterator::getRefCellValue() const const ScRefCellValue& ScCellIterator::getRefCellValue() const
{ {
return maCurCell; return maCurCell;
} }
......
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