[Bf-blender-cvs] [5ec39fc2e48] master: Cleanup: rename file

Jacques Lucke noreply at git.blender.org
Thu Apr 15 09:38:00 CEST 2021


Commit: 5ec39fc2e484a7e3d5e2e0ecb1bef0b428a7b7a7
Author: Jacques Lucke
Date:   Thu Apr 15 09:37:50 2021 +0200
Branches: master
https://developer.blender.org/rB5ec39fc2e484a7e3d5e2e0ecb1bef0b428a7b7a7

Cleanup: rename file

Internally we use the name "context (path)" instead of "breadcrumb".
This was missing from a rename in the original patch.

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

M	source/blender/editors/space_spreadsheet/CMakeLists.txt
M	source/blender/editors/space_spreadsheet/space_spreadsheet.cc
R099	source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.cc	source/blender/editors/space_spreadsheet/spreadsheet_context.cc
R100	source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.hh	source/blender/editors/space_spreadsheet/spreadsheet_context.hh

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

diff --git a/source/blender/editors/space_spreadsheet/CMakeLists.txt b/source/blender/editors/space_spreadsheet/CMakeLists.txt
index 056358edb78..b2a0905d4a2 100644
--- a/source/blender/editors/space_spreadsheet/CMakeLists.txt
+++ b/source/blender/editors/space_spreadsheet/CMakeLists.txt
@@ -33,7 +33,7 @@ set(INC
 
 set(SRC
   space_spreadsheet.cc
-  spreadsheet_breadcrumb.cc
+  spreadsheet_context.cc
   spreadsheet_column.cc
   spreadsheet_data_source.cc
   spreadsheet_data_source_geometry.cc
@@ -41,7 +41,7 @@ set(SRC
   spreadsheet_layout.cc
   spreadsheet_ops.cc
 
-  spreadsheet_breadcrumb.hh
+  spreadsheet_context.hh
   spreadsheet_cell_value.hh
   spreadsheet_column.hh
   spreadsheet_column_values.hh
diff --git a/source/blender/editors/space_spreadsheet/space_spreadsheet.cc b/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
index 7122725ad45..190f50ed443 100644
--- a/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
+++ b/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
@@ -45,7 +45,7 @@
 
 #include "spreadsheet_intern.hh"
 
-#include "spreadsheet_breadcrumb.hh"
+#include "spreadsheet_context.hh"
 #include "spreadsheet_data_source_geometry.hh"
 #include "spreadsheet_intern.hh"
 #include "spreadsheet_layout.hh"
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.cc b/source/blender/editors/space_spreadsheet/spreadsheet_context.cc
similarity index 99%
rename from source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.cc
rename to source/blender/editors/space_spreadsheet/spreadsheet_context.cc
index 7e23cd5c0f5..3eb43338908 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.cc
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_context.cc
@@ -32,7 +32,7 @@
 #include "BKE_modifier.h"
 #include "BKE_object.h"
 
-#include "spreadsheet_breadcrumb.hh"
+#include "spreadsheet_context.hh"
 
 namespace blender::ed::spreadsheet {
 
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.hh b/source/blender/editors/space_spreadsheet/spreadsheet_context.hh
similarity index 100%
rename from source/blender/editors/space_spreadsheet/spreadsheet_breadcrumb.hh
rename to source/blender/editors/space_spreadsheet/spreadsheet_context.hh



More information about the Bf-blender-cvs mailing list