From: <che...@us...> - 2009-01-25 18:29:18
|
Revision: 2569 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2569&view=rev Author: chef_koch Date: 2009-01-25 18:29:08 +0000 (Sun, 25 Jan 2009) Log Message: ----------- fixed errors, which made compile impossible Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -1732,14 +1732,20 @@ private bool RegisterForRawInput(RawInput.RAWINPUTDEVICE[] devices) { +#if DEBUG DebugWriteLine("RegisterForRawInput(): Registering {0} device(s).", devices.Length); +#endif if (RawInput.RegisterRawInputDevices(devices, devices.Length, Marshal.SizeOf(typeof(RawInput.RAWINPUTDEVICE)))) { int dwError = Marshal.GetLastWin32Error(); +#if DEBUG DebugWriteLine("RegisterForRawInput(): error={0}", dwError); +#endif throw new Win32Exception(dwError, "Imon:RegisterForRawInput()"); } +#if DEBUG DebugWriteLine("RegisterForRawInput(): Done."); +#endif return true; } Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -27,7 +27,7 @@ private void ExternalChannels_Load(object sender, EventArgs e) { - IList cards = Card.ListAll(); + System.Collections.Generic.IList<TvDatabase.Card> cards = Card.ListAll(); if (cards.Count == 0) { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -384,7 +384,7 @@ /// </summary> internal static void LoadExternalConfigs() { - IList cards = Card.ListAll(); + System.Collections.Generic.IList<TvDatabase.Card> cards = Card.ListAll(); if (cards.Count == 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |