summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-07-16 19:00:51 -0400
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-07-17 07:20:57 +0000
commit61aabb7d814b634e29003d8b555938f40b6f6fb4 (patch)
tree25f19315972a993eff207c6300bedc51933637c1
parent50df6263ccde24874191812950dcccd8f839754b (diff)
fdo#81445: Display correct label for empty cell.
Change-Id: I4f3e99b2231f7cd87daa27ef2dc47d3bf37cea57 (cherry picked from commit 2202bda95c76127dffcc9c7460e462a877344b9c) Reviewed-on: https://gerrit.libreoffice.org/10361 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/core/tool/chgtrack.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/core/tool/chgtrack.cxx b/sc/source/core/tool/chgtrack.cxx
index 87d0cdb640f8..1ebb30d1be77 100644
--- a/sc/source/core/tool/chgtrack.cxx
+++ b/sc/source/core/tool/chgtrack.cxx
@@ -1806,10 +1806,9 @@ void ScChangeActionContent::GetValueString(
case CELLTYPE_FORMULA :
GetFormulaString(rStr, rCell.mpFormula);
break;
+ case CELLTYPE_NONE:
default:
- {
- // added to avoid warnings
- }
+ rStr = OUString();
}
}