[Bf-blender-cvs] [e18e9aa0d0f] master: Cleanup: Typo in naming (BLE instead of BKE, tssttt).

Bastien Montagne noreply at git.blender.org
Thu Aug 8 17:20:47 CEST 2019


Commit: e18e9aa0d0f2133b61cf1d9c707ff2166ba5c0ca
Author: Bastien Montagne
Date:   Thu Aug 8 17:18:15 2019 +0200
Branches: master
https://developer.blender.org/rBe18e9aa0d0f2133b61cf1d9c707ff2166ba5c0ca

Cleanup: Typo in naming (BLE instead of BKE, tssttt).

===================================================================

M	source/blender/blenkernel/BKE_library.h
M	source/blender/blenkernel/intern/blendfile.c
M	source/blender/blenkernel/intern/library.c

===================================================================

diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h
index 28769ba7de9..c0ac71f9c96 100644
--- a/source/blender/blenkernel/BKE_library.h
+++ b/source/blender/blenkernel/BKE_library.h
@@ -223,7 +223,7 @@ void BKE_main_id_flag_all(struct Main *bmain, const int flag, const bool value);
 
 void BKE_main_id_clear_newpoins(struct Main *bmain);
 
-void BLE_main_id_refcount_recompute(struct Main *bmain, const bool do_linked_only);
+void BKE_main_id_refcount_recompute(struct Main *bmain, const bool do_linked_only);
 
 void BKE_main_lib_objects_recalc_all(struct Main *bmain);
 
diff --git a/source/blender/blenkernel/intern/blendfile.c b/source/blender/blenkernel/intern/blendfile.c
index 4ceae89dfbb..0d94fbe648f 100644
--- a/source/blender/blenkernel/intern/blendfile.c
+++ b/source/blender/blenkernel/intern/blendfile.c
@@ -372,7 +372,7 @@ static void setup_app_data(bContext *C,
      * lib_link on local IDs using linked ones.
      * There is no real way to predict amount of changes here, so we have to fully redo
      * refcounting . */
-    BLE_main_id_refcount_recompute(bmain, true);
+    BKE_main_id_refcount_recompute(bmain, true);
   }
 }
 
diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index 3f095d923b1..de6f5142a19 100644
--- a/source/blender/blenkernel/intern/library.c
+++ b/source/blender/blenkernel/intern/library.c
@@ -1815,7 +1815,7 @@ static int id_refcount_recompute_callback(void *user_data,
   return IDWALK_RET_NOP;
 }
 
-void BLE_main_id_refcount_recompute(struct Main *bmain, const bool do_linked_only)
+void BKE_main_id_refcount_recompute(struct Main *bmain, const bool do_linked_only)
 {
   ID *id;



More information about the Bf-blender-cvs mailing list