|
From: <an...@us...> - 2007-05-19 06:45:45
|
Revision: 408
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=408&view=rev
Author: and-81
Date: 2007-05-18 23:45:44 -0700 (Fri, 18 May 2007)
Log Message:
-----------
Fixed GoToScreen.cs not storing screen number.
Modified Paths:
--------------
trunk/plugins/IR Server Suite/Common/MPUtils/Forms/GoToScreen.cs
trunk/plugins/MCEReplacement/Forms/GoToScreen.cs
Modified: trunk/plugins/IR Server Suite/Common/MPUtils/Forms/GoToScreen.cs
===================================================================
--- trunk/plugins/IR Server Suite/Common/MPUtils/Forms/GoToScreen.cs 2007-05-19 06:39:06 UTC (rev 407)
+++ trunk/plugins/IR Server Suite/Common/MPUtils/Forms/GoToScreen.cs 2007-05-19 06:45:44 UTC (rev 408)
@@ -16,7 +16,7 @@
public string Screen
{
- get { return comboBoxScreen.SelectedText; }
+ get { return comboBoxScreen.Text; }
}
#endregion Properties
@@ -33,7 +33,7 @@
if (String.IsNullOrEmpty(selected))
comboBoxScreen.SelectedIndex = 0;
else
- comboBoxScreen.SelectedText = selected;
+ comboBoxScreen.Text = selected;
}
#endregion Constructors
Modified: trunk/plugins/MCEReplacement/Forms/GoToScreen.cs
===================================================================
--- trunk/plugins/MCEReplacement/Forms/GoToScreen.cs 2007-05-19 06:39:06 UTC (rev 407)
+++ trunk/plugins/MCEReplacement/Forms/GoToScreen.cs 2007-05-19 06:45:44 UTC (rev 408)
@@ -16,7 +16,7 @@
public string Screen
{
- get { return comboBoxScreen.SelectedText; }
+ get { return comboBoxScreen.Text; }
}
#endregion Properties
@@ -33,7 +33,7 @@
if (String.IsNullOrEmpty(selected))
comboBoxScreen.SelectedIndex = 0;
else
- comboBoxScreen.SelectedText = selected;
+ comboBoxScreen.Text = selected;
}
#endregion Constructors
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|