[Bf-blender-cvs] [c9c88b96263] temp-spreadsheet-row-filter: Use "Spreadsheet" instead of "SpreadSheet"

Hans Goudey noreply at git.blender.org
Thu Apr 22 16:14:31 CEST 2021


Commit: c9c88b9626399a6d75e8d97113d8feaa05bed15f
Author: Hans Goudey
Date:   Thu Apr 22 08:56:22 2021 -0500
Branches: temp-spreadsheet-row-filter
https://developer.blender.org/rBc9c88b9626399a6d75e8d97113d8feaa05bed15f

Use "Spreadsheet" instead of "SpreadSheet"

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 4b5bf536602..462dfca83d3 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -7394,7 +7394,7 @@ static void rna_def_spreadsheet_column_id(BlenderRNA *brna)
   srna = RNA_def_struct(brna, "SpreadsheetColumnID", NULL);
   RNA_def_struct_sdna(srna, "SpreadsheetColumnID");
   RNA_def_struct_ui_text(
-      srna, "SpreadSheet Column ID", "Data used to identify a spreadsheet column");
+      srna, "Spreadsheet Column ID", "Data used to identify a spreadsheet column");
 
   prop = RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
   RNA_def_property_ui_text(prop, "Column Name", "");
@@ -7417,7 +7417,7 @@ static void rna_def_spreadsheet_column(BlenderRNA *brna)
   srna = RNA_def_struct(brna, "SpreadsheetColumn", NULL);
   RNA_def_struct_sdna(srna, "SpreadsheetColumn");
   RNA_def_struct_ui_text(
-      srna, "SpreadSheet Column", "Persistent data associated with a spreadsheet column");
+      srna, "Spreadsheet Column", "Persistent data associated with a spreadsheet column");
 
   prop = RNA_def_property(srna, "data_type", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_sdna(prop, NULL, "data_type");
@@ -7449,7 +7449,7 @@ static void rna_def_spreadsheet_row_filter(BlenderRNA *brna)
 
   srna = RNA_def_struct(brna, "SpreadsheetRowFilter", NULL);
   RNA_def_struct_sdna(srna, "SpreadsheetRowFilter");
-  RNA_def_struct_ui_text(srna, "SpreadSheet Row Filter", "");
+  RNA_def_struct_ui_text(srna, "Spreadsheet Row Filter", "");
 
   prop = RNA_def_property(srna, "enabled", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", SPREADSHEET_ROW_FILTER_ENABLED);



More information about the Bf-blender-cvs mailing list