summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/sheetdatacontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/sheetdatacontext.cxx')
-rw-r--r--sc/source/filter/oox/sheetdatacontext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/oox/sheetdatacontext.cxx b/sc/source/filter/oox/sheetdatacontext.cxx
index 5105d2561f35..cbd7c9dcda88 100644
--- a/sc/source/filter/oox/sheetdatacontext.cxx
+++ b/sc/source/filter/oox/sheetdatacontext.cxx
@@ -335,7 +335,7 @@ bool SheetDataContext::importCell( const AttributeList& rAttribs )
maCellData.mbShowPhonetic = rAttribs.getBool( XML_ph, false );
// reset cell value, formula settings, and inline string
- maCellValue = OUString();
+ maCellValue.clear();
mxInlineStr.reset();
mbHasFormula = false;
@@ -363,7 +363,7 @@ void SheetDataContext::importFormula( const AttributeList& rAttribs )
maTableData.mbRef2Deleted = rAttribs.getBool( XML_del2, false );
}
- maFormulaStr = OUString();
+ maFormulaStr.clear();
}
void SheetDataContext::importRow( SequenceInputStream& rStrm )