summaryrefslogtreecommitdiff
path: root/sc/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-13 09:32:50 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 10:35:53 +0200
commit2922a967a1da5f9c0a07b5390906307d0ae6fe48 (patch)
treebc8d0a6f25e5d058adecb016f619096d64c4a484 /sc/qa/complex
parent188af1e56e3280ea4446e694cfc5c2b4abbe8c3b (diff)
java: Avoid naming non-fields with the prefix m_
found by PMD Change-Id: I5955cfc9c4d777496a2e8e4b2c422a51764a8bc1
Diffstat (limited to 'sc/qa/complex')
-rw-r--r--sc/qa/complex/cellRanges/CheckXCellRangesQuery.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java b/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java
index 5b0c9a77de75..9e53de25c6b1 100644
--- a/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java
+++ b/sc/qa/complex/cellRanges/CheckXCellRangesQuery.java
@@ -81,8 +81,8 @@ public class CheckXCellRangesQuery /* extends ComplexTestCase */ {
new Type(XSpreadsheet.class),oIndexSheets.getByIndex(0));
// get the first sheet name
- XNamed m_xNamed = (XNamed) AnyConverter.toObject(new Type(XNamed.class),m_xSpreadSheet);
- sSheetName = m_xNamed.getName();
+ XNamed xNamed = (XNamed) AnyConverter.toObject(new Type(XNamed.class),m_xSpreadSheet);
+ sSheetName = xNamed.getName();
// get the cell
System.out.println("Getting a cell from sheet") ;