From 177903cf0f0d5c6bf00f6bd732eff8efab235f5e Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 15 May 2014 12:57:21 -0400 Subject: p is for pointers. Change-Id: I7df56e7549e8ccccdfa9ca1b88f85e8c81e4a946 --- svtools/source/contnr/treelist.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools') 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; } }; -- cgit