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-06 07:42:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 07:45:22 +0300
commiteef4077f18495d88a2426cfda3ec9a4dc461f798 (patch)
tree0042b131bafa216f8ee69546085f2841a1a13513 /source/blender/editors/space_clip
parent1085c2cc44573b77a74baae8f4be9771941d58da (diff)
Cleanup: remove redundant doxygen \file argument
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/clip_buttons.c3
-rw-r--r--source/blender/editors/space_clip/clip_dopesheet_draw.c3
-rw-r--r--source/blender/editors/space_clip/clip_dopesheet_ops.c3
-rw-r--r--source/blender/editors/space_clip/clip_draw.c3
-rw-r--r--source/blender/editors/space_clip/clip_editor.c3
-rw-r--r--source/blender/editors/space_clip/clip_graph_draw.c3
-rw-r--r--source/blender/editors/space_clip/clip_graph_ops.c3
-rw-r--r--source/blender/editors/space_clip/clip_intern.h3
-rw-r--r--source/blender/editors/space_clip/clip_ops.c3
-rw-r--r--source/blender/editors/space_clip/clip_toolbar.c3
-rw-r--r--source/blender/editors/space_clip/clip_utils.c3
-rw-r--r--source/blender/editors/space_clip/space_clip.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_detect.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_intern.h3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_orient.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_plane.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_solve.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_stabilize.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_track.c3
-rw-r--r--source/blender/editors/space_clip/tracking_ops_utils.c3
-rw-r--r--source/blender/editors/space_clip/tracking_select.c3
22 files changed, 22 insertions, 44 deletions
diff --git a/source/blender/editors/space_clip/clip_buttons.c b/source/blender/editors/space_clip/clip_buttons.c
index c405a60219d..3810b60adf2 100644
--- a/source/blender/editors/space_clip/clip_buttons.c
+++ b/source/blender/editors/space_clip/clip_buttons.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_buttons.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include <string.h>
diff --git a/source/blender/editors/space_clip/clip_dopesheet_draw.c b/source/blender/editors/space_clip/clip_dopesheet_draw.c
index ba1d9083ed7..739a728ee4a 100644
--- a/source/blender/editors/space_clip/clip_dopesheet_draw.c
+++ b/source/blender/editors/space_clip/clip_dopesheet_draw.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_dopesheet_draw.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_movieclip_types.h"
diff --git a/source/blender/editors/space_clip/clip_dopesheet_ops.c b/source/blender/editors/space_clip/clip_dopesheet_ops.c
index f4746ecd58c..e25ad4a1c07 100644
--- a/source/blender/editors/space_clip/clip_dopesheet_ops.c
+++ b/source/blender/editors/space_clip/clip_dopesheet_ops.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_dopesheet_ops.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c
index 6c9a50e742e..dd9fbef8649 100644
--- a/source/blender/editors/space_clip/clip_draw.c
+++ b/source/blender/editors/space_clip/clip_draw.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_draw.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_gpencil_types.h"
diff --git a/source/blender/editors/space_clip/clip_editor.c b/source/blender/editors/space_clip/clip_editor.c
index c8694647d9d..aad2ab3fa20 100644
--- a/source/blender/editors/space_clip/clip_editor.c
+++ b/source/blender/editors/space_clip/clip_editor.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_editor.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include <stddef.h>
diff --git a/source/blender/editors/space_clip/clip_graph_draw.c b/source/blender/editors/space_clip/clip_graph_draw.c
index 04d8e058413..9bdf67b0ca8 100644
--- a/source/blender/editors/space_clip/clip_graph_draw.c
+++ b/source/blender/editors/space_clip/clip_graph_draw.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_graph_draw.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_movieclip_types.h"
diff --git a/source/blender/editors/space_clip/clip_graph_ops.c b/source/blender/editors/space_clip/clip_graph_ops.c
index eb2983b3a4b..c4c4f5b3a7b 100644
--- a/source/blender/editors/space_clip/clip_graph_ops.c
+++ b/source/blender/editors/space_clip/clip_graph_ops.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_graph_ops.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index 192977f890b..74e3eec4b86 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_intern.h
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#ifndef __CLIP_INTERN_H__
diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c
index 78752ec8276..0950169c51e 100644
--- a/source/blender/editors/space_clip/clip_ops.c
+++ b/source/blender/editors/space_clip/clip_ops.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_ops.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include <errno.h>
diff --git a/source/blender/editors/space_clip/clip_toolbar.c b/source/blender/editors/space_clip/clip_toolbar.c
index 128125e5f0f..1706b4f1765 100644
--- a/source/blender/editors/space_clip/clip_toolbar.c
+++ b/source/blender/editors/space_clip/clip_toolbar.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_toolbar.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include <string.h>
diff --git a/source/blender/editors/space_clip/clip_utils.c b/source/blender/editors/space_clip/clip_utils.c
index 89c8d6945c5..aa1d1870906 100644
--- a/source/blender/editors/space_clip/clip_utils.c
+++ b/source/blender/editors/space_clip/clip_utils.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/clip_utils.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c
index 64bb4fa4954..bfd14eff2b3 100644
--- a/source/blender/editors/space_clip/space_clip.c
+++ b/source/blender/editors/space_clip/space_clip.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/space_clip.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include <string.h>
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 31c2f3b4b9f..06ce327706c 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_detect.c b/source/blender/editors/space_clip/tracking_ops_detect.c
index 631031e1187..8c76d5e204a 100644
--- a/source/blender/editors/space_clip/tracking_ops_detect.c
+++ b/source/blender/editors/space_clip/tracking_ops_detect.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_detect.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_intern.h b/source/blender/editors/space_clip/tracking_ops_intern.h
index 02c502f6976..bcf628fa591 100644
--- a/source/blender/editors/space_clip/tracking_ops_intern.h
+++ b/source/blender/editors/space_clip/tracking_ops_intern.h
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_intern.h
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#ifndef __TRACKING_OPS_INTERN_H__
diff --git a/source/blender/editors/space_clip/tracking_ops_orient.c b/source/blender/editors/space_clip/tracking_ops_orient.c
index 40f06ed72a5..0da3828473d 100644
--- a/source/blender/editors/space_clip/tracking_ops_orient.c
+++ b/source/blender/editors/space_clip/tracking_ops_orient.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_orient.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_plane.c b/source/blender/editors/space_clip/tracking_ops_plane.c
index e3bb1e3f5d9..ff980d8bc5a 100644
--- a/source/blender/editors/space_clip/tracking_ops_plane.c
+++ b/source/blender/editors/space_clip/tracking_ops_plane.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_plane.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_solve.c b/source/blender/editors/space_clip/tracking_ops_solve.c
index 4c7c23afe5a..c6349e20afe 100644
--- a/source/blender/editors/space_clip/tracking_ops_solve.c
+++ b/source/blender/editors/space_clip/tracking_ops_solve.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_solve.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_stabilize.c b/source/blender/editors/space_clip/tracking_ops_stabilize.c
index 2bf1ded531c..449befbc66e 100644
--- a/source/blender/editors/space_clip/tracking_ops_stabilize.c
+++ b/source/blender/editors/space_clip/tracking_ops_stabilize.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_stabilize.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_track.c b/source/blender/editors/space_clip/tracking_ops_track.c
index b7887d54d1e..28e138c73fe 100644
--- a/source/blender/editors/space_clip/tracking_ops_track.c
+++ b/source/blender/editors/space_clip/tracking_ops_track.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_track.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_ops_utils.c b/source/blender/editors/space_clip/tracking_ops_utils.c
index f2874e5d7a6..0e7e437b75a 100644
--- a/source/blender/editors/space_clip/tracking_ops_utils.c
+++ b/source/blender/editors/space_clip/tracking_ops_utils.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_ops_utils.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"
diff --git a/source/blender/editors/space_clip/tracking_select.c b/source/blender/editors/space_clip/tracking_select.c
index 267b79e152f..7c728294b38 100644
--- a/source/blender/editors/space_clip/tracking_select.c
+++ b/source/blender/editors/space_clip/tracking_select.c
@@ -17,8 +17,7 @@
* All rights reserved.
*/
-/** \file blender/editors/space_clip/tracking_select.c
- * \ingroup spclip
+/** \file \ingroup spclip
*/
#include "MEM_guardedalloc.h"