diff options
| author | Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> | 2024-09-28 19:58:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-28 19:58:29 +0200 |
| commit | 7ed06a77c1119b6ee7cd6d32893339465197f420 (patch) | |
| tree | e1c108d4fe88e0047330538854ff6f226659365e /src/pluginlistproxy.cpp | |
| parent | 9c130cbf2fc7225fb2916e46419af50671772aa0 (diff) | |
Add author and description methods to IPluginList (#2118)
Diffstat (limited to 'src/pluginlistproxy.cpp')
| -rw-r--r-- | src/pluginlistproxy.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pluginlistproxy.cpp b/src/pluginlistproxy.cpp index 8b826a81..034a1429 100644 --- a/src/pluginlistproxy.cpp +++ b/src/pluginlistproxy.cpp @@ -128,3 +128,13 @@ bool PluginListProxy::hasNoRecords(const QString& name) const { return m_Proxied->hasNoRecords(name); } + +QString PluginListProxy::author(const QString& name) const +{ + return m_Proxied->author(name); +} + +QString PluginListProxy::description(const QString& name) const +{ + return m_Proxied->description(name); +} |
