summaryrefslogtreecommitdiff
path: root/oox/source/vml/vmlshape.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/vml/vmlshape.cxx')
-rw-r--r--oox/source/vml/vmlshape.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx
index d7783d806cb0..879b462c9c14 100644
--- a/oox/source/vml/vmlshape.cxx
+++ b/oox/source/vml/vmlshape.cxx
@@ -68,8 +68,6 @@ using namespace ::com::sun::star::text;
namespace oox {
namespace vml {
-
-
using namespace ::com::sun::star;
using namespace ::com::sun::star::drawing;
using namespace ::com::sun::star::graphic;
@@ -78,15 +76,11 @@ using namespace ::com::sun::star::io;
using ::oox::core::XmlFilterBase;
-
-
namespace {
const sal_Int32 VML_SHAPETYPE_PICTUREFRAME = 75;
const sal_Int32 VML_SHAPETYPE_HOSTCONTROL = 201;
-
-
awt::Point lclGetAbsPoint( const awt::Point& rRelPoint, const awt::Rectangle& rShapeRect, const awt::Rectangle& rCoordSys )
{
double fWidthRatio = static_cast< double >( rShapeRect.Width ) / rCoordSys.Width;
@@ -111,8 +105,6 @@ awt::Rectangle lclGetAbsRect( const awt::Rectangle& rRelRect, const awt::Rectang
} // namespace
-
-
ShapeTypeModel::ShapeTypeModel():
mbAutoHeight( false ),
mbVisible( true )
@@ -132,8 +124,6 @@ void ShapeTypeModel::assignUsed( const ShapeTypeModel& rSource )
moGraphicTitle.assignIfUsed( rSource.moGraphicTitle );
}
-
-
ShapeType::ShapeType( Drawing& rDrawing ) :
mrDrawing( rDrawing )
{
@@ -210,8 +200,6 @@ awt::Rectangle ShapeType::getRelRectangle() const
nWidth, nHeight );
}
-
-
ClientData::ClientData() :
mnObjType( XML_TOKEN_INVALID ),
mnTextHAlign( XML_Left ),
@@ -239,8 +227,6 @@ ClientData::ClientData() :
{
}
-
-
ShapeModel::ShapeModel()
{
}
@@ -261,8 +247,6 @@ ClientData& ShapeModel::createClientData()
return *mxClientData;
}
-
-
ShapeBase::ShapeBase( Drawing& rDrawing ) :
ShapeType( rDrawing )
{
@@ -452,8 +436,6 @@ void ShapeBase::convertShapeProperties( const Reference< XShape >& rxShape ) con
PropertySet( rxShape ).setProperties( aPropMap );
}
-
-
SimpleShape::SimpleShape( Drawing& rDrawing, const OUString& rService ) :
ShapeBase( rDrawing ),
maService( rService )
@@ -739,8 +721,6 @@ Reference< XShape > SimpleShape::createPictureObject( const Reference< XShapes >
return xShape;
}
-
-
RectangleShape::RectangleShape( Drawing& rDrawing ) :
SimpleShape( rDrawing, "com.sun.star.drawing.RectangleShape" )
{
@@ -773,15 +753,11 @@ Reference<XShape> RectangleShape::implConvertAndInsert(const Reference<XShapes>&
return xShape;
}
-
-
EllipseShape::EllipseShape( Drawing& rDrawing ) :
SimpleShape( rDrawing, "com.sun.star.drawing.EllipseShape" )
{
}
-
-
PolyLineShape::PolyLineShape( Drawing& rDrawing ) :
SimpleShape( rDrawing, "com.sun.star.drawing.PolyLineShape" )
{
@@ -837,8 +813,6 @@ awt::Rectangle LineShape::getRelRectangle() const
return aShapeRect;
}
-
-
BezierShape::BezierShape(Drawing& rDrawing)
: SimpleShape(rDrawing, "com.sun.star.drawing.OpenBezierShape")
{
@@ -939,8 +913,6 @@ Reference< XShape > BezierShape::implConvertAndInsert( const Reference< XShapes
return xShape;
}
-
-
CustomShape::CustomShape( Drawing& rDrawing ) :
SimpleShape( rDrawing, "com.sun.star.drawing.CustomShape" )
{
@@ -964,8 +936,6 @@ Reference< XShape > CustomShape::implConvertAndInsert( const Reference< XShapes
return xShape;
}
-
-
ComplexShape::ComplexShape( Drawing& rDrawing ) :
CustomShape( rDrawing )
{
@@ -1056,8 +1026,6 @@ Reference< XShape > ComplexShape::implConvertAndInsert( const Reference< XShapes
return CustomShape::implConvertAndInsert( rxShapes, rShapeRect );
}
-
-
GroupShape::GroupShape( Drawing& rDrawing ) :
ShapeBase( rDrawing ),
mxChildren( new ShapeContainer( rDrawing ) )
@@ -1138,8 +1106,6 @@ Reference< XShape > GroupShape::implConvertAndInsert( const Reference< XShapes >
return xGroupShape;
}
-
-
} // namespace vml
} // namespace oox