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:
Diffstat (limited to 'source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh b/source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh
index f4d07255e2d..7cf9238d34e 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh
@@ -4,10 +4,9 @@
#include "DNA_space_types.h"
+#include "BLI_generic_virtual_array.hh"
#include "BLI_string_ref.hh"
-#include "FN_generic_virtual_array.hh"
-
namespace blender::ed::spreadsheet {
struct CellDrawParams;
@@ -22,10 +21,10 @@ class ColumnValues final {
protected:
std::string name_;
- fn::GVArray data_;
+ GVArray data_;
public:
- ColumnValues(std::string name, fn::GVArray data) : name_(std::move(name)), data_(std::move(data))
+ ColumnValues(std::string name, GVArray data) : name_(std::move(name)), data_(std::move(data))
{
/* The array should not be empty. */
BLI_assert(data_);
@@ -48,7 +47,7 @@ class ColumnValues final {
return data_.size();
}
- const fn::GVArray &data() const
+ const GVArray &data() const
{
return data_;
}