diff options
| -rw-r--r-- | plugins/pychrysalide/analysis/scan/item.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/pychrysalide/analysis/scan/item.c b/plugins/pychrysalide/analysis/scan/item.c index 014ae24..e8b6a31 100644 --- a/plugins/pychrysalide/analysis/scan/item.c +++ b/plugins/pychrysalide/analysis/scan/item.c @@ -234,7 +234,7 @@ static bool py_scan_registered_item_resolve_wrapper(GScanRegisteredItem *item, c  #define SCAN_REGISTERED_ITEM_RESOLVE_WRAPPER PYTHON_WRAPPER_DEF         \  (                                                                       \ -    _cmp_rich, "$self, target, ctx, scope, /",                          \ +    resolve, "$self, target, ctx, scope, /",                            \      METH_VARARGS,                                                       \      "Abstract method used to resolve an item by name.\n"                \      "\n"                                                                \ @@ -319,7 +319,7 @@ static bool py_scan_registered_item_reduce_wrapper(GScanRegisteredItem *item, GS  #define SCAN_REGISTERED_ITEM_REDUCE_WRAPPER PYTHON_WRAPPER_DEF          \  (                                                                       \ -    _cmp_rich, "$self, ctx, scope, /",                                  \ +    reduce, "$self, ctx, scope, /",                                     \      METH_VARARGS,                                                       \      "Abstract method used to replace the item by an equivalent reduced" \      " value.\n"                                                         \ @@ -407,7 +407,7 @@ static bool py_scan_registered_item_run_call_wrapper(GScanRegisteredItem *item,  #define SCAN_REGISTERED_ITEM_CALL_WRAPPER PYTHON_WRAPPER_DEF            \  (                                                                       \ -    _cmp_rich, "$self, args, ctx, scope, /",                            \ +    run_call, "$self, args, ctx, scope, /",                             \      METH_VARARGS,                                                       \      "Abstract method used to replace the item and its arguments by an"  \      " equivalent reduced value.\n"                                      \ @@ -488,8 +488,6 @@ static bool py_scan_registered_item_run_call_wrapper(GScanRegisteredItem *item,  *                                                                             *  *  Retour      : Nouvel élément d'appel identifié ou None.                    *  *                                                                             * -*  Retour      : -                                                            * -*                                                                             *  *  Remarques   : -                                                            *  *                                                                             *  ******************************************************************************/  | 
