X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FLibCecTray%2Fcontroller%2Fapplications%2FApplications.cs;h=3f3a359b136d877d3ac2ea0f11e9a4ffefdc0fbb;hb=97401db10c2303a67f4f2d2f1756aa078d473d65;hp=2835f1c16baa11b54c0ca9f53a822519efda5ff1;hpb=75b61df90e6c80855e4f89c0b80db4e78d877a6a;p=deb_libcec.git diff --git a/src/LibCecTray/controller/applications/Applications.cs b/src/LibCecTray/controller/applications/Applications.cs index 2835f1c..3f3a359 100644 --- a/src/LibCecTray/controller/applications/Applications.cs +++ b/src/LibCecTray/controller/applications/Applications.cs @@ -74,7 +74,7 @@ namespace LibCECTray.controller.applications { if (item.Length > 0) { - var app = ApplicationController.FromString(_controller.Settings, item); + var app = ApplicationController.FromString(_controller, _controller.Settings, item); if (app != null) _controllers.Add(app.ProcessName, app); } @@ -100,9 +100,9 @@ namespace LibCECTray.controller.applications get { var defaultValues = new Dictionary(); - WMCController wmcController = new WMCController(_controller.Settings); + WMCController wmcController = new WMCController(_controller); defaultValues.Add(wmcController.ProcessName, wmcController); - XBMCController xbmcController = new XBMCController(_controller.Settings); + XBMCController xbmcController = new XBMCController(_controller); defaultValues.Add(xbmcController.ProcessName, xbmcController); return defaultValues;