[Bf-blender-cvs] [0abf754748c] master: Cleanup: sort struct blocks, description

Campbell Barton noreply at git.blender.org
Thu Feb 7 22:25:14 CET 2019


Commit: 0abf754748cbab97749acb581aceca4ba9315ac5
Author: Campbell Barton
Date:   Fri Feb 8 07:29:21 2019 +1100
Branches: master
https://developer.blender.org/rB0abf754748cbab97749acb581aceca4ba9315ac5

Cleanup: sort struct blocks, description

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

M	source/blender/depsgraph/intern/builder/deg_builder_nodes.h
M	source/blender/depsgraph/intern/builder/deg_builder_relations.h
M	source/blender/depsgraph/intern/depsgraph.h
M	source/blender/depsgraph/intern/node/deg_node.h
M	source/blender/depsgraph/intern/node/deg_node_operation.h
M	source/blender/editors/space_outliner/outliner_edit.c

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

diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
index 4d1f8dbb82d..adfd22d203a 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
@@ -67,9 +67,9 @@ struct PropertyRNA;
 namespace DEG {
 
 struct ComponentNode;
-struct Node;
 struct Depsgraph;
 struct IDNode;
+struct Node;
 struct OperationNode;
 struct TimeSourceNode;
 
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.h b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
index 40b77959d20..8765a8a5eb4 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
@@ -80,12 +80,12 @@ struct PropertyRNA;
 namespace DEG {
 
 struct ComponentNode;
-struct Node;
 struct DepsNodeHandle;
-struct Relation;
 struct Depsgraph;
 struct IDNode;
+struct Node;
 struct OperationNode;
+struct Relation;
 struct RootPChanMap;
 struct TimeSourceNode;
 
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index 1b0913d4722..9a0b01d8679 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -53,8 +53,8 @@ struct ViewLayer;
 namespace DEG {
 
 struct ComponentNode;
-struct Node;
 struct IDNode;
+struct Node;
 struct OperationNode;
 struct TimeSourceNode;
 
diff --git a/source/blender/depsgraph/intern/node/deg_node.h b/source/blender/depsgraph/intern/node/deg_node.h
index 40280128743..59eca34cc70 100644
--- a/source/blender/depsgraph/intern/node/deg_node.h
+++ b/source/blender/depsgraph/intern/node/deg_node.h
@@ -32,9 +32,9 @@ struct Scene;
 
 namespace DEG {
 
-struct Relation;
 struct Depsgraph;
 struct OperationNode;
+struct Relation;
 
 /* Metatype of Nodes - The general "level" in the graph structure
  * the node serves. */
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.h b/source/blender/depsgraph/intern/node/deg_node_operation.h
index 990e866ed8c..9aff992550f 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.h
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.h
@@ -26,8 +26,8 @@
 
 #include "intern/depsgraph_type.h"
 
-struct ID;
 struct Depsgraph;
+struct ID;
 
 namespace DEG {
 
diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c
index 2f765fd0c66..56ae114db78 100644
--- a/source/blender/editors/space_outliner/outliner_edit.c
+++ b/source/blender/editors/space_outliner/outliner_edit.c
@@ -1895,7 +1895,7 @@ void OUTLINER_OT_orphans_purge(wmOperatorType *ot)
 	/* identifiers */
 	ot->idname = "OUTLINER_OT_orphans_purge";
 	ot->name = "Purge All";
-	ot->description = "Clear all orphaned data-blocks without any users from the file.";
+	ot->description = "Clear all orphaned data-blocks without any users from the file";
 
 	/* callbacks */
 	ot->invoke = outliner_orphans_purge_invoke;



More information about the Bf-blender-cvs mailing list