diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-23 14:35:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-23 14:37:31 +0200 |
commit | c733be973e1483fb40f48bacc9182ccf0977ede3 (patch) | |
tree | 49d01eb8557c64ec1b04929d8f7c3fc71246bff8 /oox/source/vml/vmlshape.cxx | |
parent | 0c8634317979af80a32be729ed169229e8ecff99 (diff) |
com::sun::star->css in lotuswordpro,mysqlc,oox
Change-Id: Id99ff87c4eb3f1b36702261ce63d5d2793ea35d7
Diffstat (limited to 'oox/source/vml/vmlshape.cxx')
-rw-r--r-- | oox/source/vml/vmlshape.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx index 41f4ebd6dd71..daeca3fbaf17 100644 --- a/oox/source/vml/vmlshape.cxx +++ b/oox/source/vml/vmlshape.cxx @@ -532,18 +532,18 @@ SimpleShape::SimpleShape( Drawing& rDrawing, const OUString& rService ) : void lcl_setSurround(PropertySet& rPropSet, const ShapeTypeModel& rTypeModel) { - sal_Int32 nSurround = com::sun::star::text::WrapTextMode_THROUGHT; + sal_Int32 nSurround = css::text::WrapTextMode_THROUGHT; if ( rTypeModel.moWrapType.get() == "square" || rTypeModel.moWrapType .get()== "tight" || rTypeModel.moWrapType.get() == "through" ) { - nSurround = com::sun::star::text::WrapTextMode_PARALLEL; + nSurround = css::text::WrapTextMode_PARALLEL; if ( rTypeModel.moWrapSide.get() == "left" ) - nSurround = com::sun::star::text::WrapTextMode_LEFT; + nSurround = css::text::WrapTextMode_LEFT; else if ( rTypeModel.moWrapSide.get() == "right" ) - nSurround = com::sun::star::text::WrapTextMode_RIGHT; + nSurround = css::text::WrapTextMode_RIGHT; } else if ( rTypeModel.moWrapType.get() == "topAndBottom" ) - nSurround = com::sun::star::text::WrapTextMode_NONE; + nSurround = css::text::WrapTextMode_NONE; rPropSet.setProperty(PROP_Surround, nSurround); } @@ -795,7 +795,7 @@ Reference< XShape > SimpleShape::implConvertAndInsert( const Reference< XShapes // The associated properties "PROP_MirroredX" and "PROP_MirroredY" have to be set here so that direction change will occur internally. if (bFlipX || bFlipY) { - com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue > aPropSequence (2); + css::uno::Sequence< css::beans::PropertyValue > aPropSequence (2); int nPropertyIndex = 0; if (bFlipX) { |