From f7965b0bcd559451c471a26bf5fd6f542887d95e Mon Sep 17 00:00:00 2001
From: Noel Grandin <noel@peralex.com>
Date: Mon, 14 Mar 2016 08:41:57 +0200
Subject: remove some unused typedefs, and inline some use-once

Change-Id: I5ada1cff98c0a3e065d126444f8052f444323743
Reviewed-on: https://gerrit.libreoffice.org/23234
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
---
 chart2/source/model/main/Axis.cxx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'chart2/source')

diff --git a/chart2/source/model/main/Axis.cxx b/chart2/source/model/main/Axis.cxx
index 10334a6e92cc..7fb1ce385dee 100644
--- a/chart2/source/model/main/Axis.cxx
+++ b/chart2/source/model/main/Axis.cxx
@@ -309,10 +309,9 @@ struct StaticAxisInfo : public rtl::StaticAggregate< uno::Reference< beans::XPro
 };
 
 typedef uno::Reference< beans::XPropertySet > lcl_tSubGridType;
-typedef uno::Sequence< lcl_tSubGridType >     lcl_tSubGridSeq;
 
 void lcl_CloneSubGrids(
-    const lcl_tSubGridSeq & rSource, lcl_tSubGridSeq & rDestination )
+    const uno::Sequence< lcl_tSubGridType > & rSource, uno::Sequence< lcl_tSubGridType > & rDestination )
 {
     const lcl_tSubGridType * pBegin = rSource.getConstArray();
     const lcl_tSubGridType * pEnd = pBegin + rSource.getLength();
-- 
cgit