[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.2' - sc/source

Kohei Yoshida kohei.yoshida at collabora.com
Wed Jul 16 16:05:53 PDT 2014


 sc/source/core/tool/chgtrack.cxx |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 7c76ada0f4a45b4b6375d33e2eada739ddb2fd88
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Wed Jul 16 19:00:51 2014 -0400

    fdo#81445: Display correct label for empty cell.
    
    Change-Id: I4f3e99b2231f7cd87daa27ef2dc47d3bf37cea57
    (cherry picked from commit 2202bda95c76127dffcc9c7460e462a877344b9c)

diff --git a/sc/source/core/tool/chgtrack.cxx b/sc/source/core/tool/chgtrack.cxx
index 7512f7b..ff261ca 100644
--- a/sc/source/core/tool/chgtrack.cxx
+++ b/sc/source/core/tool/chgtrack.cxx
@@ -1814,10 +1814,9 @@ void ScChangeActionContent::GetValueString(
         case CELLTYPE_FORMULA :
             GetFormulaString(rStr, rCell.mpFormula);
         break;
+        case CELLTYPE_NONE:
         default:
-        {
-            // added to avoid warnings
-        }
+            rStr = OUString();
     }
 }
 


More information about the Libreoffice-commits mailing list