summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-14 08:41:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-03-14 11:06:32 +0000
commitf7965b0bcd559451c471a26bf5fd6f542887d95e (patch)
treef6b1a30faeba1e6f16393dd4ea34bc75293a5655 /chart2
parent03637a75c1bebf8b35b520139b9ddfa3238ee53f (diff)
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>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/model/main/Axis.cxx3
1 files changed, 1 insertions, 2 deletions
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();