summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/chgtrack.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/chgtrack.cxx')
-rw-r--r--sc/source/core/tool/chgtrack.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/tool/chgtrack.cxx b/sc/source/core/tool/chgtrack.cxx
index 3f5d5c9b2c11..a2d080cf6e43 100644
--- a/sc/source/core/tool/chgtrack.cxx
+++ b/sc/source/core/tool/chgtrack.cxx
@@ -1720,7 +1720,7 @@ void ScChangeActionContent::SetValue(
OUString& rStr, ScCellValue& rCell, sal_uLong nFormat, const ScCellValue& rOrgCell,
const ScDocument* pFromDoc, ScDocument* pToDoc )
{
- rStr = OUString();
+ rStr.clear();
if (GetContentCellType(rOrgCell))
{
@@ -1748,7 +1748,7 @@ void ScChangeActionContent::SetValue(
void ScChangeActionContent::SetCell( OUString& rStr, ScCellValue& rCell, sal_uLong nFormat, const ScDocument* pDoc )
{
- rStr = OUString();
+ rStr.clear();
if (rCell.isEmpty())
return;
@@ -1794,7 +1794,7 @@ void ScChangeActionContent::GetValueString(
break;
case CELLTYPE_NONE:
default:
- rStr = OUString();
+ rStr.clear();
}
}
@@ -2199,7 +2199,7 @@ void ScChangeTrack::Clear()
aGeneratedMap.clear();
aPasteCutMap.clear();
maUserCollection.clear();
- maUser = OUString();
+ maUser.clear();
Init();
}