|
From: <die...@us...> - 2007-01-27 18:27:35
|
Revision: 33
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=33&view=rev
Author: diehard2
Date: 2007-01-27 10:27:22 -0800 (Sat, 27 Jan 2007)
Log Message:
-----------
Code cleanup. Small config fix
Modified Paths:
--------------
trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo
trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs
trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj
Removed Paths:
-------------
trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/Release/DirecTV.TunerPlugin.dll
Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo
===================================================================
(Binary files differ)
Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs
===================================================================
--- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs 2007-01-27 17:40:21 UTC (rev 32)
+++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs 2007-01-27 18:27:22 UTC (rev 33)
@@ -158,24 +158,16 @@
private void EnableAdavancedSettings()
{
+ advancedBox.Enabled = true;
baudComboBox.Enabled = true;
timeoutNumUpDown.Enabled = true;
- keyMapComboBox.Enabled = true;
- commandSetBox.Enabled = true;
- channelSetBox.Enabled = true;
- powerOnBox.Enabled = true;
- debugBox.Enabled = true;
}
private void DisableAdavancedSettings()
{
+ advancedBox.Enabled = false;
baudComboBox.Enabled = false;
timeoutNumUpDown.Enabled = false;
- keyMapComboBox.Enabled = false;
- commandSetBox.Enabled = false;
- channelSetBox.Enabled = false;
- powerOnBox.Enabled = false;
- debugBox.Enabled = false;
}
}
Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj
===================================================================
--- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-27 17:40:21 UTC (rev 32)
+++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-27 18:27:22 UTC (rev 33)
@@ -62,7 +62,7 @@
<Reference Include="Accessibility" />
<Reference Include="Core, Version=1.0.2579.42468, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\..\Copy of MP\xbmc\bin\Release\Core.dll</HintPath>
+ <HintPath>..\..\..\..\..\Desktop\Release\Core.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
@@ -71,7 +71,7 @@
<Reference Include="System.Xml" />
<Reference Include="Utils, Version=1.0.2579.42459, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\..\Copy of MP\xbmc\bin\Release\Utils.dll</HintPath>
+ <HintPath>..\..\..\..\..\Desktop\Release\Utils.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup>
Deleted: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/Release/DirecTV.TunerPlugin.dll
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|