summaryrefslogtreecommitdiff
path: root/test/source/sheet/xnamedranges.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-27 09:22:13 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-28 09:31:16 +0000
commit43b4903db3e925c652e25c34362490f8adc9c5ec (patch)
treeaf12777b72d42280467e8cc19b914b2c7f4f3816 /test/source/sheet/xnamedranges.cxx
parent7d6308dad9f4a079d57719a6e3a9c4cebb47d051 (diff)
teach stylepolice plugin about ref-counted-pointer naming
Change-Id: I6e91d22fc1826038c05ddb6fc065563c6a250752 Reviewed-on: https://gerrit.libreoffice.org/24459 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'test/source/sheet/xnamedranges.cxx')
-rw-r--r--test/source/sheet/xnamedranges.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/sheet/xnamedranges.cxx b/test/source/sheet/xnamedranges.cxx
index 41295b831392..c31f4afe7d82 100644
--- a/test/source/sheet/xnamedranges.cxx
+++ b/test/source/sheet/xnamedranges.cxx
@@ -176,12 +176,12 @@ void XNamedRanges::testRemoveByName()
void XNamedRanges::testOutputList()
{
- table::CellAddress xCellAddress = table::CellAddress (0,2,0);
+ table::CellAddress aCellAddress = table::CellAddress (0,2,0);
uno::Reference< sheet::XNamedRanges > xNamedRanges(init(), UNO_QUERY_THROW);
uno::Reference< container::XIndexAccess > xNamedRangesIndex(init(), UNO_QUERY_THROW);
sal_Int32 nElementsCount = xNamedRangesIndex->getCount();
- xNamedRanges->outputList(xCellAddress);
+ xNamedRanges->outputList(aCellAddress);
OUString aString;
uno::Reference< table::XCell > xCell;