From 38b58556b4e28e21f7e807593134c6b6745a1bbd Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 26 Aug 2013 15:25:38 +0200 Subject: sd: fix C++11ism Change-Id: Ia03d4794a8d1fc2967946866a0d2975e5e52d6bb --- sd/inc/drawdoc.hxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sd/inc') 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> maLayoutInfo; + std::vector > 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>& GetLayoutVector() const { return maLayoutInfo; } + const std::vector >& GetLayoutVector() const + { return maLayoutInfo; } /** Insert pages into this document -- cgit