From 09f29c0b70357684b270745167cc30a3134b8d98 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 27 Mar 2012 04:46:52 +0000 Subject: style/name cleanup: have EDBM_* functions match our style guide and also match BM_ function naming conventions --- source/blender/blenkernel/BKE_customdata.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenkernel/BKE_customdata.h') diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h index a22182a52f5..9797aa1201f 100644 --- a/source/blender/blenkernel/BKE_customdata.h +++ b/source/blender/blenkernel/BKE_customdata.h @@ -125,7 +125,7 @@ void CustomData_free_temporary(struct CustomData *data, int totelem); * backed by an external data array. the different allocation types are * defined above. returns the data of the layer. * - * in editmode, use EM_add_data_layer instead of this function + * in editmode, use EDBM_data_layer_add instead of this function */ void *CustomData_add_layer(struct CustomData *data, int type, int alloctype, void *layer, int totelem); @@ -136,14 +136,14 @@ void *CustomData_add_layer_named(struct CustomData *data, int type, int alloctyp /* frees the active or first data layer with the give type. * returns 1 on succes, 0 if no layer with the given type is found * - * in editmode, use EM_free_data_layer instead of this function + * in editmode, use EDBM_data_layer_free instead of this function */ int CustomData_free_layer(struct CustomData *data, int type, int totelem, int index); /* frees the layer index with the give type. * returns 1 on succes, 0 if no layer with the given type is found * - * in editmode, use EM_free_data_layer instead of this function + * in editmode, use EDBM_data_layer_free instead of this function */ int CustomData_free_layer_active(struct CustomData *data, int type, int totelem); -- cgit v1.2.3