diff options
| author | 2026-03-29 15:48:47 +0100 | |
|---|---|---|
| committer | 2026-03-29 17:38:40 +0100 | |
| commit | aed47513a5410a10ac9b477c621fbce425593c7f (patch) | |
| tree | d362cc0f0c5a8ae1ae9e7d50e83e553391b14071 /src/extensible.cpp | |
| parent | Fix building on older versions of Clang. (diff) | |
Move service types to their own namespace.
- ServiceProvider is now Service::Provider
- DataProvider is now Service::SimpleProvider (the old name does
not really make sense now we don't have SERVICE_DATA and the
only difference is automatic registration.
- Some members of ModuleManager have been elevated to the Service
namespace in case other code wants to use them.
Diffstat (limited to 'src/extensible.cpp')
| -rw-r--r-- | src/extensible.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extensible.cpp b/src/extensible.cpp index 94bc3eef0..b0f7666de 100644 --- a/src/extensible.cpp +++ b/src/extensible.cpp @@ -109,7 +109,7 @@ void Extensible::UnhookExtensions(const std::vector<ExtensionItem*>& items) } ExtensionItem::ExtensionItem(const WeakModulePtr& mod, const std::string& Key, ExtensionType exttype) - : ServiceProvider(mod, "ExtensionItem", Key) + : Service::Provider(mod, "ExtensionItem", Key) , extype(exttype) { } |
