svtools/source/contnr/treelist.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 177903cf0f0d5c6bf00f6bd732eff8efab235f5e
Author: Kohei Yoshida <kohei.yosh...@collabora.com>
Date:   Thu May 15 12:57:21 2014 -0400

    p is for pointers.
    
    Change-Id: I7df56e7549e8ccccdfa9ca1b88f85e8c81e4a946

diff --git a/svtools/source/contnr/treelist.cxx 
b/svtools/source/contnr/treelist.cxx
index e8f6608..f60b1c9 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;
     }
 };
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to