[Bf-blender-cvs] [c6143da27c6] master: Cleanup: remove DNA_view2d_types.h from DNA_sound_types.h

Campbell Barton noreply at git.blender.org
Sun Mar 29 11:37:55 CEST 2020


Commit: c6143da27c68f128d5dd5f11abfa96b18e249124
Author: Campbell Barton
Date:   Sun Mar 29 20:32:45 2020 +1100
Branches: master
https://developer.blender.org/rBc6143da27c68f128d5dd5f11abfa96b18e249124

Cleanup: remove DNA_view2d_types.h from DNA_sound_types.h

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

M	source/blender/makesdna/DNA_sound_types.h

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

diff --git a/source/blender/makesdna/DNA_sound_types.h b/source/blender/makesdna/DNA_sound_types.h
index 73f0e20efcb..04ac9d4e5be 100644
--- a/source/blender/makesdna/DNA_sound_types.h
+++ b/source/blender/makesdna/DNA_sound_types.h
@@ -26,9 +26,6 @@
 #include "DNA_ID.h"
 #include "DNA_defs.h"
 
-/* stupid... could easily be solved */
-#include "DNA_view2d_types.h"
-
 struct Ipo;
 struct PackedFile;
 
@@ -104,7 +101,7 @@ typedef enum eSound_Type {
 } eSound_Type;
 #endif
 
-/* bSound->flags */
+/** #bSound.flags */
 enum {
 #ifdef DNA_DEPRECATED_ALLOW
   /* deprecated! used for sound actuator loading */
@@ -114,13 +111,11 @@ enum {
   SOUND_FLAGS_MONO = (1 << 5),
 };
 
-/* bSound->tags */
+/** #bSound.tags */
 enum {
   /* Do not free/reset waveform on sound load, only used by undo code. */
   SOUND_TAGS_WAVEFORM_NO_RELOAD = 1 << 0,
   SOUND_TAGS_WAVEFORM_LOADING = (1 << 6),
 };
 
-/* to DNA_sound_types.h*/
-
-#endif
+#endif /* __DNA_SOUND_TYPES_H__ */



More information about the Bf-blender-cvs mailing list