From c115a5594b226a17aee8e9ca506b2a615a4fdad5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com>
Date: Tue, 1 Sep 2009 14:56:11 +0000
Subject: [PATCH] those methods have been renamed some times ago

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28727 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/BusinessPath.py | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/product/ERP5/Document/BusinessPath.py b/product/ERP5/Document/BusinessPath.py
index 2d09fd6884..3098755c5f 100644
--- a/product/ERP5/Document/BusinessPath.py
+++ b/product/ERP5/Document/BusinessPath.py
@@ -91,8 +91,9 @@ class BusinessPath(Path):
                             )
 
   # IArrowBase implementation
-  security.declareProtected(Permissions.AccessContentsInformation, 'getSourceBaseCategoryList')
-  def getSourceBaseCategoryList(self):
+  security.declareProtected(Permissions.AccessContentsInformation,
+                            'getSourceArrowBaseCategoryList')
+  def getSourceArrowBaseCategoryList(self):
     """
       Returns all categories which are used to define the source
       of this Arrow
@@ -102,8 +103,9 @@ class BusinessPath(Path):
         'source_administration', 'source_project', 'source_function',
         'source_payment', 'source_account')
 
-  security.declareProtected(Permissions.AccessContentsInformation, 'getDestinationBaseCategoryList')
-  def getDestinationBaseCategoryList(self):
+  security.declareProtected(Permissions.AccessContentsInformation,
+                            'getDestinationArrowBaseCategoryList')
+  def getDestinationArrowBaseCategoryList(self):
     """
       Returns all categories which are used to define the destination
       of this Arrow
-- 
2.30.9