X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=PluginManager.cs;h=051c6ab13d43873986e2d0ff213a023d55aebd5c;hb=bf0210888b2c1a7eb26656fdcaec4e0559569772;hp=55f4d211f557ebc9a405d48a395ab4509e76294a;hpb=1b1f91b709e01680efda771cd905e460c08fb19a;p=WebThing.git diff --git a/PluginManager.cs b/PluginManager.cs index 55f4d21..051c6ab 100644 --- a/PluginManager.cs +++ b/PluginManager.cs @@ -38,5 +38,11 @@ namespace bytex64.WebThing { Plugins[key].InitWebView(view); } } + + public void Deinit() { + foreach (WebThingPlugin p in Plugins.Values) { + p.Deinit(wt); + } + } } }