[Libreoffice-commits] core.git: sd/inc

Michael Stahl mstahl at redhat.com
Mon Aug 26 06:28:27 PDT 2013


 sd/inc/drawdoc.hxx |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 38b58556b4e28e21f7e807593134c6b6745a1bbd
Author: Michael Stahl <mstahl at redhat.com>
Date:   Mon Aug 26 15:25:38 2013 +0200

    sd: fix C++11ism
    
    Change-Id: Ia03d4794a8d1fc2967946866a0d2975e5e52d6bb

diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index 6ef4c27..46790a4 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
 


More information about the Libreoffice-commits mailing list