summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-08-30 18:07:28 +0000
committersr55 <[email protected]>2010-08-30 18:07:28 +0000
commitfb30889bda3e0133298b2d6e19cc54c73aa74788 (patch)
tree2afe7e29ffc2ec4e7b45992c14c634dd83442fb0
parentc05563c0a8d4d3b8795628d7eee8ab089fb494a4 (diff)
WinGui:
- Fix Build git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3505 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/C#/HandBrake.ApplicationServices/Functions/Main.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Functions/Main.cs b/win/C#/HandBrake.ApplicationServices/Functions/Main.cs
index a92d2d245..43a064ca8 100644
--- a/win/C#/HandBrake.ApplicationServices/Functions/Main.cs
+++ b/win/C#/HandBrake.ApplicationServices/Functions/Main.cs
@@ -3,6 +3,8 @@
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
+using HandBrake.ApplicationServices.Views;
+
namespace HandBrake.ApplicationServices.Functions
{
using System.Diagnostics;
@@ -32,7 +34,7 @@ namespace HandBrake.ApplicationServices.Functions
/// </param>
public static void ShowExceptiowWindow(string shortError, string longError)
{
- frmExceptionWindow exceptionWindow = new frmExceptionWindow();
+ ExceptionWindow exceptionWindow = new ExceptionWindow();
exceptionWindow.Setup(shortError, longError);
exceptionWindow.Show();
}