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:
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/BLO_blend_defs.h5
-rw-r--r--source/blender/blenloader/BLO_blend_validate.h5
-rw-r--r--source/blender/blenloader/BLO_readfile.h5
-rw-r--r--source/blender/blenloader/BLO_undofile.h3
-rw-r--r--source/blender/blenloader/BLO_writefile.h5
-rw-r--r--source/blender/blenloader/intern/blend_validate.c3
-rw-r--r--source/blender/blenloader/intern/readblenentry.c3
-rw-r--r--source/blender/blenloader/intern/readfile.c3
-rw-r--r--source/blender/blenloader/intern/readfile.h3
-rw-r--r--source/blender/blenloader/intern/undofile.c3
-rw-r--r--source/blender/blenloader/intern/versioning_250.c3
-rw-r--r--source/blender/blenloader/intern/versioning_260.c3
-rw-r--r--source/blender/blenloader/intern/versioning_270.c3
-rw-r--r--source/blender/blenloader/intern/versioning_280.c3
-rw-r--r--source/blender/blenloader/intern/versioning_defaults.c3
-rw-r--r--source/blender/blenloader/intern/versioning_dna.c3
-rw-r--r--source/blender/blenloader/intern/versioning_legacy.c3
-rw-r--r--source/blender/blenloader/intern/versioning_userdef.c3
-rw-r--r--source/blender/blenloader/intern/writefile.c3
19 files changed, 42 insertions, 23 deletions
diff --git a/source/blender/blenloader/BLO_blend_defs.h b/source/blender/blenloader/BLO_blend_defs.h
index 9621af67c88..aefe3a7de08 100644
--- a/source/blender/blenloader/BLO_blend_defs.h
+++ b/source/blender/blenloader/BLO_blend_defs.h
@@ -16,8 +16,9 @@
#ifndef __BLO_BLEND_DEFS_H__
#define __BLO_BLEND_DEFS_H__
-/** \file \ingroup blenloader
- * \brief defines for blendfile codes
+/** \file
+ * \ingroup blenloader
+ * \brief defines for blendfile codes
*/
/* INTEGER CODES */
diff --git a/source/blender/blenloader/BLO_blend_validate.h b/source/blender/blenloader/BLO_blend_validate.h
index a36d23c52d8..c0c2ceabb7f 100644
--- a/source/blender/blenloader/BLO_blend_validate.h
+++ b/source/blender/blenloader/BLO_blend_validate.h
@@ -20,8 +20,9 @@
#ifndef __BLO_BLEND_VALIDATE_H__
#define __BLO_BLEND_VALIDATE_H__
-/** \file \ingroup blenloader
- * \brief Utils ensuring .blend file (i.e. Main) is in valid state during write and/or read process.
+/** \file
+ * \ingroup blenloader
+ * \brief Utils ensuring .blend file (i.e. Main) is in valid state during write and/or read process.
*/
struct Main;
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index e8bfeecb305..bddfdf6926f 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -19,8 +19,9 @@
#ifndef __BLO_READFILE_H__
#define __BLO_READFILE_H__
-/** \file \ingroup blenloader
- * \brief external readfile function prototypes.
+/** \file
+ * \ingroup blenloader
+ * \brief external readfile function prototypes.
*/
#ifdef __cplusplus
diff --git a/source/blender/blenloader/BLO_undofile.h b/source/blender/blenloader/BLO_undofile.h
index 23a4dd389f1..1b71081547a 100644
--- a/source/blender/blenloader/BLO_undofile.h
+++ b/source/blender/blenloader/BLO_undofile.h
@@ -21,7 +21,8 @@
#ifndef __BLO_UNDOFILE_H__
#define __BLO_UNDOFILE_H__
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
struct Scene;
diff --git a/source/blender/blenloader/BLO_writefile.h b/source/blender/blenloader/BLO_writefile.h
index 5dc411270cb..db9899ea95b 100644
--- a/source/blender/blenloader/BLO_writefile.h
+++ b/source/blender/blenloader/BLO_writefile.h
@@ -20,8 +20,9 @@
#ifndef __BLO_WRITEFILE_H__
#define __BLO_WRITEFILE_H__
-/** \file \ingroup blenloader
- * \brief external writefile function prototypes.
+/** \file
+ * \ingroup blenloader
+ * \brief external writefile function prototypes.
*/
struct BlendThumbnail;
diff --git a/source/blender/blenloader/intern/blend_validate.c b/source/blender/blenloader/intern/blend_validate.c
index 24eb503f634..2d074c02d0e 100644
--- a/source/blender/blenloader/intern/blend_validate.c
+++ b/source/blender/blenloader/intern/blend_validate.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*
* Utils to check/validate a Main is in sane state, only checks relations between datablocks and libraries for now.
*
diff --git a/source/blender/blenloader/intern/readblenentry.c b/source/blender/blenloader/intern/readblenentry.c
index 29cf2539bf1..2916308df32 100644
--- a/source/blender/blenloader/intern/readblenentry.c
+++ b/source/blender/blenloader/intern/readblenentry.c
@@ -18,7 +18,8 @@
* .blend file reading entry point
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 2f7c53acf43..8fcae12a4fd 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
diff --git a/source/blender/blenloader/intern/readfile.h b/source/blender/blenloader/intern/readfile.h
index 39a474dfe49..c9ce4adc2a5 100644
--- a/source/blender/blenloader/intern/readfile.h
+++ b/source/blender/blenloader/intern/readfile.h
@@ -18,7 +18,8 @@
* blenloader readfile private function prototypes
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#ifndef __READFILE_H__
diff --git a/source/blender/blenloader/intern/undofile.c b/source/blender/blenloader/intern/undofile.c
index 19580c58ff9..ef5d8963be7 100644
--- a/source/blender/blenloader/intern/undofile.c
+++ b/source/blender/blenloader/intern/undofile.c
@@ -18,7 +18,8 @@
* .blend file reading entry point
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#include <stdlib.h>
diff --git a/source/blender/blenloader/intern/versioning_250.c b/source/blender/blenloader/intern/versioning_250.c
index fcc446b0218..d0e7e612225 100644
--- a/source/blender/blenloader/intern/versioning_250.c
+++ b/source/blender/blenloader/intern/versioning_250.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#ifndef WIN32
diff --git a/source/blender/blenloader/intern/versioning_260.c b/source/blender/blenloader/intern/versioning_260.c
index f71b87b2475..8fc9d663a69 100644
--- a/source/blender/blenloader/intern/versioning_260.c
+++ b/source/blender/blenloader/intern/versioning_260.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#include "BLI_utildefines.h"
diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c
index 3d3eddd912e..9b51e8b59f5 100644
--- a/source/blender/blenloader/intern/versioning_270.c
+++ b/source/blender/blenloader/intern/versioning_270.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#include "BLI_utildefines.h"
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index 8a688a72ef8..154abbab04a 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
/* allow readfile to use deprecated functionality */
diff --git a/source/blender/blenloader/intern/versioning_defaults.c b/source/blender/blenloader/intern/versioning_defaults.c
index 8c31d0abf5b..01a8e392459 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/blenloader/intern/versioning_dna.c b/source/blender/blenloader/intern/versioning_dna.c
index f6ff977f9d9..8032f4c6b51 100644
--- a/source/blender/blenloader/intern/versioning_dna.c
+++ b/source/blender/blenloader/intern/versioning_dna.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*
* Apply edits to DNA at load time to behave as if old files were written with new names.
*/
diff --git a/source/blender/blenloader/intern/versioning_legacy.c b/source/blender/blenloader/intern/versioning_legacy.c
index 311ff69a4d6..79c7067b14f 100644
--- a/source/blender/blenloader/intern/versioning_legacy.c
+++ b/source/blender/blenloader/intern/versioning_legacy.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/
diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c
index 056e91e9882..4366fb959c7 100644
--- a/source/blender/blenloader/intern/versioning_userdef.c
+++ b/source/blender/blenloader/intern/versioning_userdef.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*
* Version patch user preferences.
*/
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index bcbfb804479..26de42b1c12 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blenloader
+/** \file
+ * \ingroup blenloader
*/