summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2015-12-27 00:50:44 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2015-12-26 17:44:27 +0000
commit38e4f627095c81e92b3eab4fa17c4f20fbcadda6 (patch)
treea6216d013916bb8bec77ad5a4d36393f65e2b323 /include/test
parent1a263563f5ba84e05f336ac035524f6eb014594e (diff)
test: change maName to more descriptive variable name
Change-Id: I93b553c74bfa6f046092c6a550d229278e413446 Reviewed-on: https://gerrit.libreoffice.org/20956 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/container/xnamed.hxx4
-rw-r--r--include/test/container/xnamereplace.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/test/container/xnamed.hxx b/include/test/container/xnamed.hxx
index 5c79cc1410aa..e32880685438 100644
--- a/include/test/container/xnamed.hxx
+++ b/include/test/container/xnamed.hxx
@@ -19,7 +19,7 @@ namespace apitest {
class OOO_DLLPUBLIC_TEST XNamed
{
public:
- XNamed(const OUString& rName): maName(rName) {}
+ XNamed(const OUString& rName): maTestName(rName) {}
virtual ~XNamed();
void testGetName();
@@ -27,7 +27,7 @@ public:
virtual css::uno::Reference< css::uno::XInterface > init() = 0;
private:
- OUString maName;
+ OUString maTestName;
};
diff --git a/include/test/container/xnamereplace.hxx b/include/test/container/xnamereplace.hxx
index c6a2d7f03d9b..9ce6dfd7192a 100644
--- a/include/test/container/xnamereplace.hxx
+++ b/include/test/container/xnamereplace.hxx
@@ -20,7 +20,7 @@ namespace apitest {
class OOO_DLLPUBLIC_TEST XNameReplace
{
public:
- XNameReplace(const OUString& rName): maName(rName) {}
+ XNameReplace(const OUString& rName): maTestReplacementName(rName) {}
virtual css::uno::Reference< css::uno::XInterface > init() = 0;
@@ -31,7 +31,7 @@ public:
virtual ~XNameReplace() {}
private:
- OUString maName;
+ OUString maTestReplacementName;
};