Page MenuHome
Paste P2735

Masterwork From Distant Lands
ActivePublic

Authored by Ray Molenkamp (LazyDodo) on Jan 13 2022, 7:18 PM.
diff --git a/source/blender/editors/space_outliner/outliner_collections.cc b/source/blender/editors/space_outliner/outliner_collections.cc
index 472ddef52c2..45673936008 100644
--- a/source/blender/editors/space_outliner/outliner_collections.cc
+++ b/source/blender/editors/space_outliner/outliner_collections.cc
@@ -51,6 +51,9 @@
#include "outliner_intern.hh" /* own include */
+extern "C" PropertyRNA rna_Window_view_layer;
+extern "C" PropertyRNA rna_LayerObjects_active;
+
/* -------------------------------------------------------------------- */
/** \name Utility API
* \{ */
diff --git a/source/blender/editors/space_outliner/outliner_draw.cc b/source/blender/editors/space_outliner/outliner_draw.cc
index d0453de87e9..075d3ac19f8 100644
--- a/source/blender/editors/space_outliner/outliner_draw.cc
+++ b/source/blender/editors/space_outliner/outliner_draw.cc
@@ -81,6 +81,17 @@
#include "outliner_intern.hh"
#include "tree/tree_display.h"
+extern "C" PropertyRNA rna_ID_name;
+extern "C" PropertyRNA rna_Bone_name;
+extern "C" PropertyRNA rna_ActionGroup_name;
+extern "C" PropertyRNA rna_Window_view_layer;
+extern "C" PropertyRNA rna_LayerObjects_active;
+extern "C" PropertyRNA rna_GPencilLayer_info;
+extern "C" PropertyRNA rna_ViewLayer_name;
+extern "C" PropertyRNA rna_VertexGroup_name;
+extern "C" PropertyRNA rna_EditBone_name;
+extern "C" PropertyRNA rna_LayerObjects_active;
+
/* Disable - this is far too slow - campbell. */
/* #define USE_GROUP_SELECT */
diff --git a/source/blender/editors/space_outliner/outliner_tools.cc b/source/blender/editors/space_outliner/outliner_tools.cc
index 097d7181c99..e373a308b82 100644
--- a/source/blender/editors/space_outliner/outliner_tools.cc
+++ b/source/blender/editors/space_outliner/outliner_tools.cc
@@ -98,7 +98,7 @@
#include "outliner_intern.hh"
static CLG_LogRef LOG = {"ed.outliner.tools"};
-
+extern "C" PropertyRNA rna_LayerObjects_active;
/* -------------------------------------------------------------------- */
/** \name ID/Library/Data Set/Un-link Utilities
* \{ */
diff --git a/source/blender/editors/space_outliner/space_outliner.cc b/source/blender/editors/space_outliner/space_outliner.cc
index ea6ecbfe84c..ac7bdba97c4 100644
--- a/source/blender/editors/space_outliner/space_outliner.cc
+++ b/source/blender/editors/space_outliner/space_outliner.cc
@@ -52,6 +52,9 @@
#include "outliner_intern.hh"
#include "tree/tree_display.h"
+extern "C" PropertyRNA rna_Window_view_layer;
+extern "C" PropertyRNA rna_LayerObjects_active;
+
static void outliner_main_region_init(wmWindowManager *wm, ARegion *region)
{
ListBase *lb;

Event Timeline

Ray Molenkamp (LazyDodo) changed the title of this paste from untitled to Masterwork From Distant Lands.