Revision: 410
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=410&view=rev
Author: and-81
Date: 2007-05-19 09:16:01 -0700 (Sat, 19 May 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs
Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs
===================================================================
--- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs 2007-05-19 16:14:30 UTC (rev 409)
+++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs 2007-05-19 16:16:01 UTC (rev 410)
@@ -11,8 +11,8 @@
#region Variables
- public RemoteButton _button;
- public string _keyCode;
+ RemoteButton _button;
+ string _keyCode;
#endregion Variables
@@ -33,20 +33,12 @@
#region Constructors
- public MappedKeyCode()
- : this(RemoteButton.None, String.Empty)
- {
- }
-
- public MappedKeyCode(string button, string keyCode)
- : this((RemoteButton)Enum.Parse(typeof(RemoteButton), button), keyCode)
- {
- }
-
+ public MappedKeyCode() : this(RemoteButton.None, String.Empty) { }
+ public MappedKeyCode(string button, string keyCode) : this((RemoteButton)Enum.Parse(typeof(RemoteButton), button), keyCode) { }
public MappedKeyCode(RemoteButton button, string keyCode)
{
- _button = button;
- _keyCode = keyCode;
+ _button = button;
+ _keyCode = keyCode;
}
#endregion Constructors
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|