Kaydet (Commit) 1558b50e authored tarafından Markus Mohrhard's avatar Markus Mohrhard

remove whitespace

Change-Id: I5634bf40e8ccc4ce076409907c13f9c6f52d11a3
üst a1a480f9
......@@ -30,8 +30,6 @@ namespace oox {
namespace drawingml {
namespace chart {
template< typename ModelType >
class ModelRef : public ::boost::shared_ptr< ModelType >
{
......@@ -51,8 +49,6 @@ public:
ModelType& getOrCreate( const Param1Type& rParam1 ) { if( !*this ) this->reset( new ModelType( rParam1 ) ); return **this; }
};
template< typename ModelType >
class ModelVector : public RefVector< ModelType >
{
......@@ -71,8 +67,6 @@ private:
ModelType& append( ModelType* pModel ) { this->push_back( value_type( pModel ) ); return *pModel; }
};
template< typename KeyType, typename ModelType >
class ModelMap : public RefMap< KeyType, ModelType >
{
......@@ -92,8 +86,6 @@ private:
ModelType& insert( KeyType eKey, ModelType* pModel ) { (*this)[ eKey ].reset( pModel ); return *pModel; }
};
struct NumberFormat
{
OUString maFormatCode; /// Number format code.
......@@ -104,8 +96,6 @@ struct NumberFormat
void setAttributes( const AttributeList& rAttribs );
};
struct LayoutModel
{
double mfX; /// Left position of this object.
......@@ -123,8 +113,6 @@ struct LayoutModel
~LayoutModel();
};
} // namespace chart
} // namespace drawingml
} // namespace oox
......
......@@ -27,8 +27,6 @@ namespace oox {
namespace drawingml {
namespace chart {
struct AxisDispUnitsModel
{
typedef ModelRef< Shape > ShapeRef;
......@@ -47,8 +45,6 @@ struct AxisDispUnitsModel
~AxisDispUnitsModel();
};
struct AxisModel
{
typedef ModelRef< Shape > ShapeRef;
......@@ -94,8 +90,6 @@ struct AxisModel
~AxisModel();
};
} // namespace chart
} // namespace drawingml
} // namespace oox
......
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