summaryrefslogtreecommitdiff
path: root/include/oox/drawingml
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-08-19 05:01:20 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-08-20 08:17:40 +0200
commit1558b50e4fd5c26275efd824e731dc46fca781a4 (patch)
tree4e1e9128e9ad5ddb70751f01eef7d2d8e28de5fc /include/oox/drawingml
parenta1a480f91e6f43df23b9ecdf47d5cd230c50ebed (diff)
remove whitespace
Change-Id: I5634bf40e8ccc4ce076409907c13f9c6f52d11a3
Diffstat (limited to 'include/oox/drawingml')
-rw-r--r--include/oox/drawingml/chart/modelbase.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/oox/drawingml/chart/modelbase.hxx b/include/oox/drawingml/chart/modelbase.hxx
index d46ebbda7c50..68bb9b7e5b24 100644
--- a/include/oox/drawingml/chart/modelbase.hxx
+++ b/include/oox/drawingml/chart/modelbase.hxx
@@ -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