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-02-18 00:08:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-18 00:22:12 +0300
commitde13d0a80c3cb6a7445245b2999a29fe70e49953 (patch)
tree48ab17499c8ade363e082e5871770a9d10a8b930 /source/blender/python/bmesh
parent3316853323226afe7003a8638fa09600d9ba028d (diff)
doxygen: add newline after \file
While \file doesn't need an argument, it can't have another doxy command after it.
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_geometry.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_geometry.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_ops.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_ops.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_ops_call.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_ops_call.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_customdata.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_customdata.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_select.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_select.h3
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c3
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.h3
18 files changed, 36 insertions, 18 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 3f2b9c164e2..ef3e72bfbad 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the 'bmesh' module.
*/
diff --git a/source/blender/python/bmesh/bmesh_py_api.h b/source/blender/python/bmesh/bmesh_py_api.h
index 234076aa1c5..9f227b21440 100644
--- a/source/blender/python/bmesh/bmesh_py_api.h
+++ b/source/blender/python/bmesh/bmesh_py_api.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_API_H__
diff --git a/source/blender/python/bmesh/bmesh_py_geometry.c b/source/blender/python/bmesh/bmesh_py_geometry.c
index a5b0a261439..30265af1e9f 100644
--- a/source/blender/python/bmesh/bmesh_py_geometry.c
+++ b/source/blender/python/bmesh/bmesh_py_geometry.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the 'bmesh.geometry' module.
* Utility functions for operating on 'bmesh.types'
diff --git a/source/blender/python/bmesh/bmesh_py_geometry.h b/source/blender/python/bmesh/bmesh_py_geometry.h
index 2bd9fc1c698..98d336828dc 100644
--- a/source/blender/python/bmesh/bmesh_py_geometry.h
+++ b/source/blender/python/bmesh/bmesh_py_geometry.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_GEOMETRY_H__
diff --git a/source/blender/python/bmesh/bmesh_py_ops.c b/source/blender/python/bmesh/bmesh_py_ops.c
index 8ea54d3afa7..fbd79f28ec7 100644
--- a/source/blender/python/bmesh/bmesh_py_ops.c
+++ b/source/blender/python/bmesh/bmesh_py_ops.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the 'bmesh.ops' module.
* Operators from 'opdefines' are wrapped.
diff --git a/source/blender/python/bmesh/bmesh_py_ops.h b/source/blender/python/bmesh/bmesh_py_ops.h
index 54950d06ea1..a4a12bbef61 100644
--- a/source/blender/python/bmesh/bmesh_py_ops.h
+++ b/source/blender/python/bmesh/bmesh_py_ops.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_OPS_H__
diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.c b/source/blender/python/bmesh/bmesh_py_ops_call.c
index 1d65fecffb2..b9d506c4c41 100644
--- a/source/blender/python/bmesh/bmesh_py_ops_call.c
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file provides __call__ aka BPy_BMO_call for
* the bmesh operator and has been given its own file
diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.h b/source/blender/python/bmesh/bmesh_py_ops_call.h
index f096c1feb90..986c4e3e296 100644
--- a/source/blender/python/bmesh/bmesh_py_ops_call.h
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_OPS_CALL_H__
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 8997aab6773..540c3aa0516 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#include "BLI_math.h"
diff --git a/source/blender/python/bmesh/bmesh_py_types.h b/source/blender/python/bmesh/bmesh_py_types.h
index 1765c4e930b..deabbef1b7b 100644
--- a/source/blender/python/bmesh/bmesh_py_types.h
+++ b/source/blender/python/bmesh/bmesh_py_types.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_TYPES_H__
diff --git a/source/blender/python/bmesh/bmesh_py_types_customdata.c b/source/blender/python/bmesh/bmesh_py_types_customdata.c
index 13fbeb23ca8..c161b974eff 100644
--- a/source/blender/python/bmesh/bmesh_py_types_customdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_customdata.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the types for 'BMesh.verts/edges/faces/loops.layers'
* customdata layer access.
diff --git a/source/blender/python/bmesh/bmesh_py_types_customdata.h b/source/blender/python/bmesh/bmesh_py_types_customdata.h
index f83c466f24b..39cac7885cd 100644
--- a/source/blender/python/bmesh/bmesh_py_types_customdata.h
+++ b/source/blender/python/bmesh/bmesh_py_types_customdata.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_TYPES_CUSTOMDATA_H__
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
index 5b10f6bb2f3..aba54c6c43a 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines customdata types which can't be accessed as primitive
* python types such as MDeformVert, MLoopUV, MTexPoly
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.h b/source/blender/python/bmesh/bmesh_py_types_meshdata.h
index 17c8b01bd9e..66cdb9c119d 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.h
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_TYPES_MESHDATA_H__
diff --git a/source/blender/python/bmesh/bmesh_py_types_select.c b/source/blender/python/bmesh/bmesh_py_types_select.c
index 0aabbb5e67f..ed631f7105b 100644
--- a/source/blender/python/bmesh/bmesh_py_types_select.c
+++ b/source/blender/python/bmesh/bmesh_py_types_select.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the types for 'BMesh.select_history'
* sequence and iterator.
diff --git a/source/blender/python/bmesh/bmesh_py_types_select.h b/source/blender/python/bmesh/bmesh_py_types_select.h
index 361a1b42003..2bf2214d7f9 100644
--- a/source/blender/python/bmesh/bmesh_py_types_select.h
+++ b/source/blender/python/bmesh/bmesh_py_types_select.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_TYPES_SELECT_H__
diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index 921e5bbe853..8b8dcb518b9 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*
* This file defines the 'bmesh.utils' module.
* Utility functions for operating on 'bmesh.types'
diff --git a/source/blender/python/bmesh/bmesh_py_utils.h b/source/blender/python/bmesh/bmesh_py_utils.h
index 462bfbe85c2..a6f4f22bf8b 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.h
+++ b/source/blender/python/bmesh/bmesh_py_utils.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup pybmesh
+/** \file
+ * \ingroup pybmesh
*/
#ifndef __BMESH_PY_UTILS_H__