Skip to content

Commit

Permalink
Add isBlueprintFlagged to PluginListProxy (#2132)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanFeenstra authored Oct 1, 2024
1 parent 8f2d168 commit c56ade6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pluginlistproxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ bool PluginListProxy::isLightFlagged(const QString& name) const
return m_Proxied->isLightFlagged(name);
}

bool PluginListProxy::isBlueprintFlagged(const QString& name) const
{
return m_Proxied->isBlueprintFlagged(name);
}

bool PluginListProxy::hasNoRecords(const QString& name) const
{
return m_Proxied->hasNoRecords(name);
Expand Down
1 change: 1 addition & 0 deletions src/pluginlistproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PluginListProxy : public MOBase::IPluginList
bool isMasterFlagged(const QString& name) const override;
bool isMediumFlagged(const QString& name) const override;
bool isLightFlagged(const QString& name) const override;
bool isBlueprintFlagged(const QString& name) const override;
bool hasNoRecords(const QString& name) const override;

QString author(const QString& name) const override;
Expand Down

0 comments on commit c56ade6

Please sign in to comment.