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>2018-06-09 19:55:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-09 19:55:51 +0300
commit2e14b7fb9770ba5d7ca75f8125c73b81be8f632c (patch)
tree5fc6582273b318470e823a0ae0ed73497575b92b /source/blender/makesrna/intern
parent83cb34ccd15a3f43ebff7e62085a360e7a5c383e (diff)
RNA: remove Layout.introspect
This was added as an experiment to extract information for docs but this was never all that useful for its intended purpose.
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_ui_api.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_ui_api.c b/source/blender/makesrna/intern/rna_ui_api.c
index 35e64805e57..bf5ffa20986 100644
--- a/source/blender/makesrna/intern/rna_ui_api.c
+++ b/source/blender/makesrna/intern/rna_ui_api.c
@@ -949,10 +949,6 @@ void RNA_api_ui_layout(StructRNA *srna)
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
RNA_def_string(func, "name", NULL, 0, "", "");
- func = RNA_def_function(srna, "introspect", "uiLayoutIntrospect");
- parm = RNA_def_string(func, "string", NULL, 1024 * 1024, "Descr", "DESCR");
- RNA_def_function_return(func, parm);
-
/* color management templates */
func = RNA_def_function(srna, "template_colorspace_settings", "uiTemplateColorspaceSettings");
RNA_def_function_ui_description(func, "Item. A widget to control input color space settings.");