X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FLibCecTray%2Fcontroller%2Fapplications%2FApplications.cs;h=3f3a359b136d877d3ac2ea0f11e9a4ffefdc0fbb;hb=0184b7519cb2a2f0bb227c7866efd9c25f2587d0;hp=0b1d26f2786f105c09b860ca05942fe64c9546ca;hpb=51cf495d05ba1cce3edb750d3afdc60067f9e7af;p=deb_libcec.git diff --git a/src/LibCecTray/controller/applications/Applications.cs b/src/LibCecTray/controller/applications/Applications.cs index 0b1d26f..3f3a359 100644 --- a/src/LibCecTray/controller/applications/Applications.cs +++ b/src/LibCecTray/controller/applications/Applications.cs @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -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;