summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2015-12-27 02:04:42 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2015-12-26 19:03:24 +0000
commit422bedb783b9484a7a4b0de5b7ee4634cf6c972c (patch)
tree86cffac85aa4c7f1d2966c62f51b03d28c6546a5 /svx/source/xoutdev
parentca8560e006b014886bd6210d4e5b236cf7badcd0 (diff)
svx: change instances of maName to more descriptive names
maName is just not descriptive enough and hard to search the source for. Also in this patch: - tracked down what ASE, GPL and SOC stand for and added a comment - found instances of aName, local variables and changed these to aPaletteName Change-Id: I4c7eee31b604a8ef2ebef5fd1daa81e193dd7295 Reviewed-on: https://gerrit.libreoffice.org/20958 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'svx/source/xoutdev')
-rw-r--r--svx/source/xoutdev/XPropertyEntry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xoutdev/XPropertyEntry.cxx b/svx/source/xoutdev/XPropertyEntry.cxx
index 62ae82dd9e37..4c29e4f3fb8a 100644
--- a/svx/source/xoutdev/XPropertyEntry.cxx
+++ b/svx/source/xoutdev/XPropertyEntry.cxx
@@ -19,14 +19,14 @@
#include <svx/XPropertyEntry.hxx>
-XPropertyEntry::XPropertyEntry(const OUString& rName)
-: maName(rName),
+XPropertyEntry::XPropertyEntry(const OUString& rPropEntryName)
+: maPropEntryName(rPropEntryName),
maUiBitmap()
{
}
XPropertyEntry::XPropertyEntry(const XPropertyEntry& rOther)
-: maName(rOther.maName),
+: maPropEntryName(rOther.maPropEntryName),
maUiBitmap(rOther.maUiBitmap)
{
}