summaryrefslogtreecommitdiff
path: root/src/pluginlistproxy.cpp
diff options
context:
space:
mode:
authorJeremy Rimpo <jrim@rimpo.org>2023-10-18 23:02:16 -0500
committerJeremy Rimpo <jrim@rimpo.org>2023-10-18 23:08:49 -0500
commit8f6ba13fbc57d9f4793383a1402afd32923a9f04 (patch)
tree12876989d692d49796eb542dfc4a5a5facbe0029 /src/pluginlistproxy.cpp
parent2f5cca5c60bf9ea62ccdddb45243ee163f6b227d (diff)
Use hasNoRecords
Diffstat (limited to 'src/pluginlistproxy.cpp')
-rw-r--r--src/pluginlistproxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluginlistproxy.cpp b/src/pluginlistproxy.cpp
index bb115b4a..fa3960a8 100644
--- a/src/pluginlistproxy.cpp
+++ b/src/pluginlistproxy.cpp
@@ -124,7 +124,7 @@ bool PluginListProxy::isOverlayFlagged(const QString& name) const
return m_Proxied->isOverlayFlagged(name);
}
-bool PluginListProxy::isDummy(const QString& name) const
+bool PluginListProxy::hasNoRecords(const QString& name) const
{
- return m_Proxied->isDummy(name);
+ return m_Proxied->hasNoRecords(name);
}