Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-07-07 16:57:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 16:57:35 +0300
commit084d545202c27fda5117817491c8d5761b4daafc (patch)
tree8fa4b7a6cdec77ce07237b5e37370406bcedfda5 /source/blender/blenkernel/intern/sound.c
parent28057d54de98687ed6ffdd47c2fcbb2e40f31d2e (diff)
Cleanup: use BKE_packedfile prefix for function names
Avoid ambiguity with terms check & compare.
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index ad26314e877..1722b888d28 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -170,7 +170,7 @@ void BKE_sound_free(bSound *sound)
/* No animdata here. */
if (sound->packedfile) {
- freePackedFile(sound->packedfile);
+ BKE_packedfile_free(sound->packedfile);
sound->packedfile = NULL;
}
@@ -211,7 +211,7 @@ void BKE_sound_copy_data(Main *UNUSED(bmain),
sound_dst->newpackedfile = NULL;
if (sound_dst->packedfile) {
- sound_dst->packedfile = dupPackedFile(sound_dst->packedfile);
+ sound_dst->packedfile = BKE_packedfile_duplicate(sound_dst->packedfile);
}
BKE_sound_reset_runtime(sound_dst);