diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-15 12:57:21 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-15 12:57:59 -0400 |
commit | 177903cf0f0d5c6bf00f6bd732eff8efab235f5e (patch) | |
tree | 22004912432cbf960eb1f497da6fb480dc9a0993 /svtools | |
parent | 9986f236d6b56ad773adfbc2107bfc1c6bd181d0 (diff) |
p is for pointers.
Change-Id: I7df56e7549e8ccccdfa9ca1b88f85e8c81e4a946
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelist.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/contnr/treelist.cxx b/svtools/source/contnr/treelist.cxx index e8f6608d8b2e..f60b1c9247e2 100644 --- a/svtools/source/contnr/treelist.cxx +++ b/svtools/source/contnr/treelist.cxx @@ -1518,9 +1518,9 @@ public: SortComparator( SvTreeList& rList ) : mrList(rList) {} - bool operator() ( const SvTreeListEntry& pLeft, const SvTreeListEntry& pRight ) const + bool operator() ( const SvTreeListEntry& rLeft, const SvTreeListEntry& rRight ) const { - return mrList.Compare(&pLeft, &pRight) < 0; + return mrList.Compare(&rLeft, &rRight) < 0; } }; |