Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/RefinePlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static gui::TriggerAction* getRefineAction(const mv::Dataset<DatasetImpl>& datas
return dynamic_cast<gui::TriggerAction*>(refineAction);
}

RefinePlugin::RefinePlugin(const PluginFactory* factory) :
RefinePlugin::RefinePlugin(const mv::plugin::PluginFactory* factory) :
plugin::ViewPlugin(factory),
_hsnePoints(nullptr),
_scatterplotView(nullptr),
Expand Down Expand Up @@ -322,7 +322,7 @@ RefinePluginFactory::RefinePluginFactory() {
setIconByName("filter");
}

ViewPlugin* RefinePluginFactory::produce()
mv::plugin::ViewPlugin* RefinePluginFactory::produce()
{
return new RefinePlugin(this);
}
Expand Down
4 changes: 2 additions & 2 deletions src/RefinePlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class RefinePlugin : public mv::plugin::ViewPlugin
* Constructor
* @param factory Pointer to the plugin factory
*/
RefinePlugin(const PluginFactory* factory);
RefinePlugin(const mv::plugin::PluginFactory* factory);

/** Destructor */
~RefinePlugin() override = default;
Expand Down Expand Up @@ -78,7 +78,7 @@ class RefinePluginFactory : public mv::plugin::ViewPluginFactory
RefinePluginFactory();

/** Creates an instance of the example view plugin */
ViewPlugin* produce() override;
mv::plugin::ViewPlugin* produce() override;

/** Returns the data types that are supported by the example view plugin */
mv::DataTypes supportedDataTypes() const override;
Expand Down
Loading