diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-29 14:04:27 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-30 09:13:24 +0200 |
commit | d16d9f950f8cb6d8948875372c9ff1f0aae9fb7a (patch) | |
tree | b8d2146504c704fb9dfa11ea835ae39ff49e3dec /oox | |
parent | fa5822ce69bfc80ac8b1c5caa98de7e5c7ccf568 (diff) |
remove some unnecessary typedefs to pointer
that were really not helping make the code any clearer.
Found with a search
git grep -P 'typedef\s+\w+\s*\*\s*\w+\;'
and manual inspection
Change-Id: I6a5c031e9e060ad3623a7586ec8a8cc4fe6252e9
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/drawingml/textparagraphproperties.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/inc/drawingml/textparagraphproperties.hxx b/oox/inc/drawingml/textparagraphproperties.hxx index c864d2c0fbaf..c81fa293c068 100644 --- a/oox/inc/drawingml/textparagraphproperties.hxx +++ b/oox/inc/drawingml/textparagraphproperties.hxx @@ -59,7 +59,7 @@ public: void setStyleName( const OUString& rStyleName ) { maStyleName <<= rStyleName; } void setGraphic( ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >& rXGraphic ); - ::oox::drawingml::ColorPtr maBulletColorPtr; + std::shared_ptr< ::oox::drawingml::Color > maBulletColorPtr; ::com::sun::star::uno::Any mbBulletColorFollowText; ::com::sun::star::uno::Any mbBulletFontFollowText; ::oox::drawingml::TextFont maBulletFont; |