summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2020-04-28 14:42:29 +0200
committerXisco FaulĂ­ <xiscofauli@libreoffice.org>2020-04-28 15:50:53 +0200
commit5750be8cf82b6933cb0b44ffe5ad307da1b4a0eb (patch)
tree3ccd1a91cdac4124506e7fa1783ef8412f900e1f /oox
parent6b8ae0882bcac65f4307d6a6425f37eb0a010713 (diff)
tdf#132282: Revert fix for tdf#131554
912217285b3058efa54c2336f91fda4efdad6ff0 fixed the root cause of tdf#131554 and 69b83dc2d3014dd9b18402534e15c937dc082464 is no longer needed The unittest still passes Change-Id: I7c723b0c3cc2b56022978bbeb8bf6b3f6f93f1c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93063 Tested-by: Jenkins Reviewed-by: Xisco FaulĂ­ <xiscofauli@libreoffice.org>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/ppt/pptshape.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/oox/source/ppt/pptshape.cxx b/oox/source/ppt/pptshape.cxx
index 0fc486c05a3f..99bba509fa47 100644
--- a/oox/source/ppt/pptshape.cxx
+++ b/oox/source/ppt/pptshape.cxx
@@ -422,7 +422,6 @@ namespace
// 3. ph with nSecondSubType and the same oSubTypeIndex
// 4. ph with nSecondSubType
// 5. ph with the same oSubTypeIndex
-// It appears 3 and 1 has the same highest priority.
oox::drawingml::ShapePtr PPTShape::findPlaceholder( sal_Int32 nFirstSubType, sal_Int32 nSecondSubType,
const OptValue< sal_Int32 >& oSubTypeIndex, std::vector< oox::drawingml::ShapePtr >& rShapes, bool bMasterOnly )
@@ -514,8 +513,7 @@ oox::drawingml::ShapePtr PPTShape::findPlaceholder( sal_Int32 nFirstSubType, sal
}
}
- if (aPlaceholders.hasByPrio(0) ||
- aPlaceholders.hasByPrio(2))
+ if (aPlaceholders.hasByPrio(0))
{
break;
}