summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svtools/source/contnr/treelist.cxx4
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;
}
};