diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-08-26 15:25:38 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-08-26 15:25:38 +0200 |
commit | 38b58556b4e28e21f7e807593134c6b6745a1bbd (patch) | |
tree | dc745043c57d826abe206f10c5c29d8ab554d6c8 /sd | |
parent | 2395ae8d2ecb5b527d8856ddbce4831a6d2a7092 (diff) |
sd: fix C++11ism
Change-Id: Ia03d4794a8d1fc2967946866a0d2975e5e52d6bb
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/drawdoc.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index 6ef4c27ab0c9..46790a497466 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -189,7 +189,8 @@ private: DECL_LINK(OnlineSpellEventHdl, EditStatus*); std::vector< OUString > maAnnotationAuthors; - std::vector<com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode>> maLayoutInfo; + std::vector<com::sun::star::uno::Reference< + com::sun::star::xml::dom::XNode> > maLayoutInfo; bool mbUseEmbedFonts; @@ -267,7 +268,9 @@ public: /// load xml-based impress layout definitions into document void InitLayoutVector(); /// return reference to vector of Impress layout definitions - const std::vector<com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode>>& GetLayoutVector() const { return maLayoutInfo; } + const std::vector<com::sun::star::uno::Reference< + com::sun::star::xml::dom::XNode> >& GetLayoutVector() const + { return maLayoutInfo; } /** Insert pages into this document |