[Bf-blender-cvs] [340fc634adb] soc-2019-outliner: Outliner: Comment and includes cleanup

Nathan Craddock noreply at git.blender.org
Sat Aug 10 05:03:50 CEST 2019


Commit: 340fc634adb452735b14ed050c299aa414654fb3
Author: Nathan Craddock
Date:   Fri Aug 9 13:57:28 2019 -0600
Branches: soc-2019-outliner
https://developer.blender.org/rB340fc634adb452735b14ed050c299aa414654fb3

Outliner: Comment and includes cleanup

===================================================================

M	source/blender/editors/space_outliner/outliner_draw.c
M	source/blender/editors/space_outliner/outliner_select.c

===================================================================

diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 9a2b1feb30e..9c45fb15f6b 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -2919,7 +2919,7 @@ static void outliner_set_coord_tree_element(TreeElement *te, int startx, int sta
 
   /* closed items may be displayed in row of parent, don't change their coordinate! */
   if ((te->flag & TE_ICONROW) == 0 && (te->flag & TE_ICONROW_MERGED) == 0) {
-    /* store coord and continue, we need coordinatesfor elements outside view too */
+    /* store coord and continue, we need coordinates for elements outside view too */
     te->xs = startx;
     te->ys = starty;
   }
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index b98d96f6ef1..f96a78b1fc1 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -37,13 +37,11 @@
 
 #include "BLI_utildefines.h"
 #include "BLI_listbase.h"
-#include "BLI_string.h"
 
 #include "BKE_armature.h"
 #include "BKE_collection.h"
 #include "BKE_context.h"
 #include "BKE_gpencil.h"
-#include "BKE_idcode.h"
 #include "BKE_layer.h"
 #include "BKE_main.h"
 #include "BKE_object.h"
@@ -68,7 +66,6 @@
 #include "WM_types.h"
 
 #include "UI_interface.h"
-#include "UI_resources.h"
 #include "UI_view2d.h"
 
 #include "RNA_access.h"



More information about the Bf-blender-cvs mailing list