[Libreoffice-commits] core.git: sc/source

Tor Lillqvist tml at collabora.com
Tue Mar 28 16:11:45 UTC 2017


 sc/source/filter/inc/externallinkbuffer.hxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit c9260836b55e7f9e1441956559209ceaf4ffdea5
Author: Tor Lillqvist <tml at collabora.com>
Date:   Tue Mar 28 18:59:32 2017 +0300

    Bin an unused and a used-once typedef
    
    Change-Id: I3f93378889d2c8eb0476dba4a4ea5aca31647f5c

diff --git a/sc/source/filter/inc/externallinkbuffer.hxx b/sc/source/filter/inc/externallinkbuffer.hxx
index 8d52c4216604..57aa7db75add 100644
--- a/sc/source/filter/inc/externallinkbuffer.hxx
+++ b/sc/source/filter/inc/externallinkbuffer.hxx
@@ -268,8 +268,6 @@ private:
     ExternalNameRef     createExternalName();
 
 private:
-    typedef ::std::vector< sal_Int16 >  Int16Vector;
-    typedef ::std::vector< sal_Int32 >  Int32Vector;
     typedef RefVector< ExternalName >   ExternalNameVector;
 
     ExternalLinkType    meLinkType;         /// Type of this link object.
@@ -279,7 +277,7 @@ private:
     OUString            maTargetUrl;        /// Target link, DDE topic, OLE target.
     css::uno::Reference< css::sheet::XExternalDocLink >
                         mxDocLink;          /// Interface for an external document.
-    Int32Vector         maSheetCaches;      /// External sheet cache indexes.
+    std::vector< sal_Int32 > maSheetCaches; /// External sheet cache indexes.
     ExternalNameVector  maExtNames;         /// Defined names in external document.
 };
 


More information about the Libreoffice-commits mailing list