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