summaryrefslogtreecommitdiff
path: root/sc/source/core/data/table2.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-27 12:44:33 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-28 01:12:48 -0400
commit6f0aa08753407ab1bfd62f9c733bbf54fb365c0d (patch)
tree58554daf174fc9e0e4bd1900c033269206561d9a /sc/source/core/data/table2.cxx
parentcdef3ead120149cc4db9f44a4ab3a5124ca450c6 (diff)
Make viewfunc.cxx free of ScBaseCell.
Change-Id: I15a2682d2739a1c7be0d52b98c45b8d5a82c1686
Diffstat (limited to 'sc/source/core/data/table2.cxx')
-rw-r--r--sc/source/core/data/table2.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 319226f5acb9..253032b79c2d 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -1436,6 +1436,14 @@ const EditTextObject* ScTable::GetEditText( SCCOL nCol, SCROW nRow ) const
return aCol[nCol].GetEditText(nRow);
}
+void ScTable::RemoveEditTextCharAttribs( SCCOL nCol, SCROW nRow, const ScPatternAttr& rAttr )
+{
+ if (!ValidColRow(nCol, nRow))
+ return;
+
+ return aCol[nCol].RemoveEditTextCharAttribs(nRow, rAttr);
+}
+
void ScTable::GetFormula( SCCOL nCol, SCROW nRow, rtl::OUString& rFormula ) const
{
if (ValidColRow(nCol,nRow))