Skip to content

Commit c56ade6

Browse files
Add isBlueprintFlagged to PluginListProxy (#2132)
1 parent 8f2d168 commit c56ade6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/pluginlistproxy.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ bool PluginListProxy::isLightFlagged(const QString& name) const
124124
return m_Proxied->isLightFlagged(name);
125125
}
126126

127+
bool PluginListProxy::isBlueprintFlagged(const QString& name) const
128+
{
129+
return m_Proxied->isBlueprintFlagged(name);
130+
}
131+
127132
bool PluginListProxy::hasNoRecords(const QString& name) const
128133
{
129134
return m_Proxied->hasNoRecords(name);

src/pluginlistproxy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class PluginListProxy : public MOBase::IPluginList
3434
bool isMasterFlagged(const QString& name) const override;
3535
bool isMediumFlagged(const QString& name) const override;
3636
bool isLightFlagged(const QString& name) const override;
37+
bool isBlueprintFlagged(const QString& name) const override;
3738
bool hasNoRecords(const QString& name) const override;
3839

3940
QString author(const QString& name) const override;

0 commit comments

Comments
 (0)