diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-19 04:50:48 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-19 20:04:25 +0200 |
commit | 224172996aeb1ef7ba078a1da63ba4f1923ebbc3 (patch) | |
tree | 5110cfd23bd12b2f33bb1e56e7265cd1649cc277 /oox | |
parent | 67467b93f28ebcefb821559cb2677d8f0acd4629 (diff) |
oox: remove using namespace from headers
Change-Id: Iaf33c536c86a372aed2a719b6f87a8e03a5481ea
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/diagram/diagram.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/oox/source/drawingml/diagram/diagram.hxx b/oox/source/drawingml/diagram/diagram.hxx index ae611c9d81f9..1218187d1474 100644 --- a/oox/source/drawingml/diagram/diagram.hxx +++ b/oox/source/drawingml/diagram/diagram.hxx @@ -35,8 +35,6 @@ namespace com { namespace sun { namespace star { namespace xml { namespace dom { class XDocument; } } } } } -using namespace ::com::sun::star; - namespace oox { namespace drawingml { namespace dgm { @@ -156,8 +154,8 @@ typedef boost::shared_ptr< LayoutNode > LayoutNodePtr; -typedef std::map< OUString, uno::Reference<xml::dom::XDocument> > DiagramDomMap; -typedef uno::Sequence< uno::Sequence< uno::Any > > DiagramRelsMap; +typedef std::map< OUString, css::uno::Reference<css::xml::dom::XDocument> > DiagramDomMap; +typedef css::uno::Sequence< css::uno::Sequence< css::uno::Any > > DiagramRelsMap; @@ -300,7 +298,7 @@ public: DiagramRelsMap & getDataRelsMap() { return maDataRelsMap; } void addTo( const ShapePtr & pShape ); - uno::Sequence<beans::PropertyValue> getDomsAsPropertyValues() const; + css::uno::Sequence<css::beans::PropertyValue> getDomsAsPropertyValues() const; private: void build( ); DiagramDataPtr mpData; |