Skip to content

Commit

Permalink
Fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alxvth committed Jan 16, 2024
1 parent 09f249d commit 3eaa8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExampleTransformation/src/ExampleTransformationPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void ExampleTransformationPlugin::transform()
// Create new data set
case ExampleTransformationPlugin::Type::Pow2:
{
auto derivedData = _core->createDerivedDataset<Points>(points->getGuiName() + " (Pow2)", points);
auto derivedData = mv::data().createDerivedDataset<Points>(points->getGuiName() + " (Pow2)", points);
events().notifyDatasetAdded(derivedData);

std::vector<float> transformedData;
Expand Down

0 comments on commit 3eaa8b7

Please sign in to comment.