Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_spreadsheet/spreadsheet_data_source.hh
| Show All 31 Lines | |||||
| public: | public: | ||||
| virtual ~DataSource(); | virtual ~DataSource(); | ||||
| /** | /** | ||||
| * Calls the callback with all the column ids that should be displayed as long as the user does | * Calls the callback with all the column ids that should be displayed as long as the user does | ||||
| * not manually add or remove columns. The column id can be stack allocated. Therefore, the | * not manually add or remove columns. The column id can be stack allocated. Therefore, the | ||||
| * callback should not keep a reference to it (and copy it instead). | * callback should not keep a reference to it (and copy it instead). | ||||
| */ | */ | ||||
| virtual void foreach_default_column_ids(FunctionRef<void(const SpreadsheetColumnID &)> fn) const | virtual void foreach_default_column_ids( | ||||
HooglyBoogly: `as first` -> `as the first` | |||||
| FunctionRef<void(const SpreadsheetColumnID &, bool is_extra)> fn) const | |||||
| { | { | ||||
| UNUSED_VARS(fn); | UNUSED_VARS(fn); | ||||
| } | } | ||||
| /** | /** | ||||
| * Returns the column values the given column id. If no data exists for this id, null is | * Returns the column values the given column id. If no data exists for this id, null is | ||||
| * returned. | * returned. | ||||
| */ | */ | ||||
| Show All 26 Lines | |||||
as first -> as the first