summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-03-28 18:59:32 +0300
committerTor Lillqvist <tml@collabora.com>2017-03-28 18:59:38 +0300
commitc9260836b55e7f9e1441956559209ceaf4ffdea5 (patch)
tree271fc3e9bbe870832c139d1eff152fec1cb1d76a /sc
parent30608c66374f8effa9d534f7f9a22d41daa9770f (diff)
Bin an unused and a used-once typedef
Change-Id: I3f93378889d2c8eb0476dba4a4ea5aca31647f5c
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/externallinkbuffer.hxx4
1 files changed, 1 insertions, 3 deletions
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.
};