[Libreoffice-commits] core.git: sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Wed Sep 25 08:48:57 PDT 2013
sc/source/core/data/column3.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6f2957969bd72308ddf79cb2befa2373f2dc1dbe
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Wed Sep 25 17:47:13 2013 +0200
compare against IDF_HARDATTR, fdo#39484
regression from e851ea0ed30e9bb95c273a29aeab7f48f606145f
Change-Id: I07819f90efe87fe9d82515d637960fe48ca40c80
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 5a6f1ec..d6f5888 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -602,7 +602,7 @@ void ScColumn::DeleteArea(SCROW nStartRow, SCROW nEndRow, sal_uInt16 nDelFlag)
// Delete attributes just now
if ((nDelFlag & IDF_ATTRIB) == IDF_ATTRIB)
pAttrArray->DeleteArea( nStartRow, nEndRow );
- else if ((nDelFlag & IDF_ATTRIB) != 0)
+ else if ((nDelFlag & IDF_HARDATTR) == IDF_HARDATTR)
pAttrArray->DeleteHardAttr( nStartRow, nEndRow );
// Broadcast on only cells that were deleted; no point broadcasting on
More information about the Libreoffice-commits
mailing list