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:
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_tree.cc')
-rw-r--r--source/blender/editors/space_outliner/outliner_tree.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/space_outliner/outliner_tree.cc b/source/blender/editors/space_outliner/outliner_tree.cc
index 92da192c2d3..18ed849dd26 100644
--- a/source/blender/editors/space_outliner/outliner_tree.cc
+++ b/source/blender/editors/space_outliner/outliner_tree.cc
@@ -21,8 +21,8 @@
* \ingroup spoutliner
*/
-#include <math.h>
-#include <string.h>
+#include <cmath>
+#include <cstring>
#include "MEM_guardedalloc.h"
@@ -1226,12 +1226,12 @@ void outliner_make_object_parent_hierarchy(ListBase *lb)
/* Sorting ------------------------------------------------------ */
-typedef struct tTreeSort {
+struct tTreeSort {
TreeElement *te;
ID *id;
const char *name;
short idcode;
-} tTreeSort;
+};
/* alphabetical comparator, trying to put objects first */
static int treesort_alpha_ob(const void *v1, const void *v2)
@@ -1458,10 +1458,10 @@ static void outliner_collections_children_sort(ListBase *lb)
/* Filtering ----------------------------------------------- */
-typedef struct OutlinerTreeElementFocus {
+struct OutlinerTreeElementFocus {
TreeStoreElem *tselem;
int ys;
-} OutlinerTreeElementFocus;
+};
/**
* Bring the outliner scrolling back to where it was in relation to the original focus element