Revision: 880
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=880&view=rev
Author: ideasdigger
Date: 2007-08-31 08:24:29 -0700 (Fri, 31 Aug 2007)
Log Message:
-----------
Fixed: the VirtualWebKeyboard class was replaced with the new DialogWebKeyboard. Added the Utills.dll reference.
Modified Paths:
--------------
trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.cs
trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.csproj
Modified: trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.cs
===================================================================
--- trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.cs 2007-08-31 13:06:50 UTC (rev 879)
+++ trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.cs 2007-08-31 15:24:29 UTC (rev 880)
@@ -223,16 +223,6 @@
GUIGraphicsContext.form.Focus();
}
- public override void Render(float timePassed)
- {
- base.Render(timePassed);
- }
-
- public override void Process()
- {
- base.Process();
- }
-
/// <summary>
/// Called when [action].
/// </summary>
@@ -364,7 +354,7 @@
private void GetStringFromKeyboard(ref string strLine)
{
- VirtualWebKeyboard keyboard = (VirtualWebKeyboard)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_VIRTUAL_WEB_KEYBOARD);
+ DialogWebKeyboard keyboard = (DialogWebKeyboard)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_VIRTUAL_WEB_KEYBOARD);
if (null == keyboard) return;
keyboard.Reset();
keyboard.Text = strLine;
Modified: trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.csproj
===================================================================
--- trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.csproj 2007-08-31 13:06:50 UTC (rev 879)
+++ trunk/plugins/WebBrowserIE/Sources/GUIWebBrowser.csproj 2007-08-31 15:24:29 UTC (rev 880)
@@ -63,6 +63,11 @@
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
+ <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\Utils.DLL</HintPath>
+ <Private>False</Private>
+ </Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Common.cs" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|