doxygen: add newline after \file

While \file doesn't need an argument, it can't have another doxy
command after it.
This commit is contained in:
2019-02-18 08:08:12 +11:00
parent 3316853323
commit de13d0a80c
2994 changed files with 6288 additions and 3339 deletions

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* This file is the 'bgl' module which wraps OpenGL functions and constants,
* allowing script writers to make OpenGL calls in their Python scripts.

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/
#ifndef __BGL_H__

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* This file defines the 'bgl' module, used for drawing text in OpenGL.
*/

View File

@@ -17,7 +17,8 @@
#ifndef __BLF_PY_API_H__
#define __BLF_PY_API_H__
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/
PyObject *BPyInit_blf(void);

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* This file defines replacements for pythons '__import__' and 'imp.reload'
* functions which can import from blender textblocks.

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* This file contains wrapper functions related to global interpreter lock.
* these functions are slightly different from the original Python API,

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/
#include <Python.h>

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* This file defines the 'imbuf' image manipulation module.
*/

View File

@@ -17,7 +17,8 @@
#ifndef __IMBUF_PY_API_H__
#define __IMBUF_PY_API_H__
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/
PyObject *BPyInit_imbuf(void);

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*
* Extend upon CPython's API, filling in some gaps, these functions use PyC_
* prefix to distinguish them apart from CPython.

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
/** \file
* \ingroup pygen
*/
#ifndef __PY_CAPI_UTILS_H__

View File

@@ -14,9 +14,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pygen
* \brief header-only utilities
* \note light addition to Python.h, use py_capi_utils.h for larger features.
/** \file
* \ingroup pygen
* \brief header-only utilities
* \note light addition to Python.h, use py_capi_utils.h for larger features.
*/
#ifndef __PYTHON_UTILDEFINES_H__