Kaydet (Commit) b7a63f1d authored tarafından Armin Le Grand's avatar Armin Le Grand

removed unused variable bSuppressRotation

üst 0e895f45
...@@ -1163,8 +1163,6 @@ class MSFILTER_DLLPUBLIC EscherPropertyContainer ...@@ -1163,8 +1163,6 @@ class MSFILTER_DLLPUBLIC EscherPropertyContainer
sal_uInt32 nCountSize; sal_uInt32 nCountSize;
sal_Bool bHasComplexData; sal_Bool bHasComplexData;
sal_Bool bSuppressRotation;
sal_uInt32 ImplGetColor( const sal_uInt32 rColor, sal_Bool bSwap = sal_True ); sal_uInt32 ImplGetColor( const sal_uInt32 rColor, sal_Bool bSwap = sal_True );
void ImplCreateGraphicAttributes( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & rXPropSet, void ImplCreateGraphicAttributes( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & rXPropSet,
......
...@@ -158,7 +158,6 @@ void EscherPropertyContainer::ImplInit() ...@@ -158,7 +158,6 @@ void EscherPropertyContainer::ImplInit()
nCountSize = 0; nCountSize = 0;
nSortBufSize = 64; nSortBufSize = 64;
bHasComplexData = sal_False; bHasComplexData = sal_False;
bSuppressRotation = sal_False;
pSortStruct = new EscherPropSortStruct[ nSortBufSize ]; pSortStruct = new EscherPropSortStruct[ nSortBufSize ];
} }
...@@ -323,9 +322,6 @@ void EscherPropertyContainer::Commit( SvStream& rSt, sal_uInt16 nVersion, sal_uI ...@@ -323,9 +322,6 @@ void EscherPropertyContainer::Commit( SvStream& rSt, sal_uInt16 nVersion, sal_uI
sal_uInt32 nPropValue = pSortStruct[ i ].nPropValue; sal_uInt32 nPropValue = pSortStruct[ i ].nPropValue;
sal_uInt16 nPropId = pSortStruct[ i ].nPropId; sal_uInt16 nPropId = pSortStruct[ i ].nPropId;
if ( bSuppressRotation && ( nPropId == ESCHER_Prop_Rotation ) )
nPropValue = 0;
rSt << nPropId rSt << nPropId
<< nPropValue; << nPropValue;
} }
...@@ -2394,7 +2390,6 @@ sal_Bool EscherPropertyContainer::CreateConnectorProperties( ...@@ -2394,7 +2390,6 @@ sal_Bool EscherPropertyContainer::CreateConnectorProperties(
} }
CreateLineProperties( aXPropSet, sal_False ); CreateLineProperties( aXPropSet, sal_False );
bRetValue = sal_True; bRetValue = sal_True;
bSuppressRotation = sal_False;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment