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>2020-03-29 12:32:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-29 12:32:45 +0300
commitc6143da27c68f128d5dd5f11abfa96b18e249124 (patch)
treebd1e0db176ec6152610e3b30b69b531e6a3c965d /source/blender/makesdna
parentfc37318fe7361bc4d3632213ddb567b790305710 (diff)
Cleanup: remove DNA_view2d_types.h from DNA_sound_types.h
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_sound_types.h11
1 files changed, 3 insertions, 8 deletions
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__ */