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>2019-05-22 01:39:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-22 01:53:04 +0300
commit8accb5a46f4a498327ddd41ffb6e07972b373422 (patch)
treeadffe39cd5e713560c1a84dfefaec5f673d87f0b /source/blender/makesrna/intern/rna_depsgraph.c
parent0910932e71d2b869e0f9d4289d89f20c64beabaa (diff)
Cleanup: minor corrections
Diffstat (limited to 'source/blender/makesrna/intern/rna_depsgraph.c')
-rw-r--r--source/blender/makesrna/intern/rna_depsgraph.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c
index c4a2a64f3f0..df1727ff87c 100644
--- a/source/blender/makesrna/intern/rna_depsgraph.c
+++ b/source/blender/makesrna/intern/rna_depsgraph.c
@@ -622,21 +622,13 @@ static void rna_def_depsgraph(BlenderRNA *brna)
func = RNA_def_function(
srna, "debug_relations_graphviz", "rna_Depsgraph_debug_relations_graphviz");
- parm = RNA_def_string_file_path(func,
- "filename",
- NULL,
- FILE_MAX,
- "File Name",
- "File in which to store graphviz debug output");
+ parm = RNA_def_string_file_path(
+ func, "filename", NULL, FILE_MAX, "File Name", "Output path for the graphviz debug file");
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
func = RNA_def_function(srna, "debug_stats_gnuplot", "rna_Depsgraph_debug_stats_gnuplot");
- parm = RNA_def_string_file_path(func,
- "filename",
- NULL,
- FILE_MAX,
- "File Name",
- "File in which to store graphviz debug output");
+ parm = RNA_def_string_file_path(
+ func, "filename", NULL, FILE_MAX, "File Name", "Output path for the gnuplot debug file");
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
parm = RNA_def_string_file_path(func,
"output_filename",