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/blenfont
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/blenfont')
-rw-r--r--source/blender/blenfont/BLF_api.h3
-rw-r--r--source/blender/blenfont/intern/blf.c3
-rw-r--r--source/blender/blenfont/intern/blf_dir.c3
-rw-r--r--source/blender/blenfont/intern/blf_font.c3
-rw-r--r--source/blender/blenfont/intern/blf_font_i18n.c3
-rw-r--r--source/blender/blenfont/intern/blf_font_win32_compat.c3
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c3
-rw-r--r--source/blender/blenfont/intern/blf_internal.h3
-rw-r--r--source/blender/blenfont/intern/blf_internal_types.h3
-rw-r--r--source/blender/blenfont/intern/blf_thumbs.c3
-rw-r--r--source/blender/blenfont/intern/blf_util.c3
11 files changed, 22 insertions, 11 deletions
diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h
index 48aeffefbd2..ac4ffe0ed5a 100644
--- a/source/blender/blenfont/BLF_api.h
+++ b/source/blender/blenfont/BLF_api.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*/
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index 27437c74f74..4f6344ee506 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Main BlenFont (BLF) API, public functions for font handling.
*
diff --git a/source/blender/blenfont/intern/blf_dir.c b/source/blender/blenfont/intern/blf_dir.c
index 17935686692..34d0fe5bba3 100644
--- a/source/blender/blenfont/intern/blf_dir.c
+++ b/source/blender/blenfont/intern/blf_dir.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Manage search paths for font files.
*/
diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c
index eac1ade72db..d26c449dce2 100644
--- a/source/blender/blenfont/intern/blf_font.c
+++ b/source/blender/blenfont/intern/blf_font.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Deals with drawing text to OpenGL or bitmap buffers.
*
diff --git a/source/blender/blenfont/intern/blf_font_i18n.c b/source/blender/blenfont/intern/blf_font_i18n.c
index d214cbf95ab..2a69d714dc6 100644
--- a/source/blender/blenfont/intern/blf_font_i18n.c
+++ b/source/blender/blenfont/intern/blf_font_i18n.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* API for accessing font files.
*/
diff --git a/source/blender/blenfont/intern/blf_font_win32_compat.c b/source/blender/blenfont/intern/blf_font_win32_compat.c
index 2edbd44cdbf..70a5e3a9ce3 100644
--- a/source/blender/blenfont/intern/blf_font_win32_compat.c
+++ b/source/blender/blenfont/intern/blf_font_win32_compat.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Workaround for win32 which needs to use BLI_fopen to access files.
*
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index 1b23def3bc8..27187f2e84d 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Glyph rendering, texturing and caching. Wraps Freetype and OpenGL functions.
*/
diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h
index 4a935a883b2..f7eec01470a 100644
--- a/source/blender/blenfont/intern/blf_internal.h
+++ b/source/blender/blenfont/intern/blf_internal.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*/
diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h
index 966a6372b1a..013127b6a47 100644
--- a/source/blender/blenfont/intern/blf_internal_types.h
+++ b/source/blender/blenfont/intern/blf_internal_types.h
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*/
diff --git a/source/blender/blenfont/intern/blf_thumbs.c b/source/blender/blenfont/intern/blf_thumbs.c
index d3856d60de5..bbab5110e0e 100644
--- a/source/blender/blenfont/intern/blf_thumbs.c
+++ b/source/blender/blenfont/intern/blf_thumbs.c
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Utility function to generate font preview images.
*
diff --git a/source/blender/blenfont/intern/blf_util.c b/source/blender/blenfont/intern/blf_util.c
index ae8bb08f23e..d479861b897 100644
--- a/source/blender/blenfont/intern/blf_util.c
+++ b/source/blender/blenfont/intern/blf_util.c
@@ -17,7 +17,8 @@
* All rights reserved.
*/
-/** \file \ingroup blf
+/** \file
+ * \ingroup blf
*
* Internal utility API for BLF.
*/