From: <an...@us...> - 2007-02-19 11:19:28
|
Revision: 125 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=125&view=rev Author: and-81 Date: 2007-02-19 03:19:27 -0800 (Mon, 19 Feb 2007) Log Message: ----------- Modified Paths: -------------- trunk/plugins/TV3ExtChannelChanger/TV3ExtChannelChanger.cs trunk/plugins/TV3MceBlaster/TV3MceBlaster.cs Modified: trunk/plugins/TV3ExtChannelChanger/TV3ExtChannelChanger.cs =================================================================== --- trunk/plugins/TV3ExtChannelChanger/TV3ExtChannelChanger.cs 2007-02-19 11:18:05 UTC (rev 124) +++ trunk/plugins/TV3ExtChannelChanger/TV3ExtChannelChanger.cs 2007-02-19 11:19:27 UTC (rev 125) @@ -400,7 +400,7 @@ return null; } - string[] commands = runCommand.Split(new char[] { '|' }); + string[] commands = runCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 7) { @@ -466,7 +466,7 @@ return null; } - string[] commands = serialCommand.Split(new char[] { '|' }); + string[] commands = serialCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 6) { @@ -542,7 +542,7 @@ return null; } - string[] commands = messageCommand.Split(new char[] { '|' }); + string[] commands = messageCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 4) { Modified: trunk/plugins/TV3MceBlaster/TV3MceBlaster.cs =================================================================== --- trunk/plugins/TV3MceBlaster/TV3MceBlaster.cs 2007-02-19 11:18:05 UTC (rev 124) +++ trunk/plugins/TV3MceBlaster/TV3MceBlaster.cs 2007-02-19 11:19:27 UTC (rev 125) @@ -592,7 +592,7 @@ return null; } - string[] commands = runCommand.Split(new char[] { '|' }); + string[] commands = runCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 7) { @@ -658,7 +658,7 @@ return null; } - string[] commands = serialCommand.Split(new char[] { '|' }); + string[] commands = serialCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 6) { @@ -852,7 +852,7 @@ return null; } - string[] commands = messageCommand.Split(new char[] { '|' }); + string[] commands = messageCommand.Split(new char[] { '|' }, StringSplitOptions.None); if (commands.Length != 4) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |