View | Details | Raw Unified | Return to issue 119443
Collapse All | Expand All

(-)filter/source/msfilter/msdffimp.cxx (-1 / +6 lines)
Lines 4342-4348 Link Here
4342
				ApplyAttributes( rSt, aSet, aObjData );
4342
				ApplyAttributes( rSt, aSet, aObjData );
4343
				pRet->SetMergedItemSet(aSet);
4343
				pRet->SetMergedItemSet(aSet);
4344
			}
4344
			}
4345
			else if ( aObjData.eShapeType == mso_sptLine )
4345
			else if ( aObjData.eShapeType == mso_sptLine && !( GetPropertyValue( DFF_Prop_fc3DLightFace ) & 8 ) )
4346
			{
4346
			{
4347
				basegfx::B2DPolygon aPoly;
4347
				basegfx::B2DPolygon aPoly;
4348
				aPoly.append(basegfx::B2DPoint(aObjData.aBoundRect.Left(), aObjData.aBoundRect.Top()));
4348
				aPoly.append(basegfx::B2DPoint(aObjData.aBoundRect.Left(), aObjData.aBoundRect.Top()));
Lines 4775-4780 Link Here
4775
						((SdrEdgeObj*)pRet)->SetEdgeTrackPath( aPoly );
4775
						((SdrEdgeObj*)pRet)->SetEdgeTrackPath( aPoly );
4776
						pRet->SetMergedItemSet( aSet );
4776
						pRet->SetMergedItemSet( aSet );
4777
					}
4777
					}
4778
					if ( aObjData.eShapeType == mso_sptLine )
4779
					{
4780
						pRet->SetMergedItemSet(aSet);
4781
						((SdrObjCustomShape*)pRet)->MergeDefaultAttributes();
4782
					}
4778
				}
4783
				}
4779
			}
4784
			}
4780
4785
(-)svx/source/customshapes/EnhancedCustomShapeGeometry.cxx (+1 lines)
Lines 8249-8254 Link Here
8249
	switch( eSpType )
8249
	switch( eSpType )
8250
	{
8250
	{
8251
		case mso_sptArc :						pCustomShape = &msoArc; break;
8251
		case mso_sptArc :						pCustomShape = &msoArc; break;
8252
		case mso_sptLine:						pCustomShape = &msoStraightConnector1; break;
8252
		case mso_sptRectangle :					pCustomShape = &msoRectangle; break;
8253
		case mso_sptRectangle :					pCustomShape = &msoRectangle; break;
8253
		case mso_sptParallelogram :				pCustomShape = &msoParallelogram; break;
8254
		case mso_sptParallelogram :				pCustomShape = &msoParallelogram; break;
8254
		case mso_sptTrapezoid :					pCustomShape = &msoTrapezoid; break;
8255
		case mso_sptTrapezoid :					pCustomShape = &msoTrapezoid; break;

Return to issue 119443