From: sr55 Date: Mon, 30 Aug 2010 18:07:28 +0000 (+0000) Subject: WinGui: X-Git-Tag: 0.9.5~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb30889bda3e0133298b2d6e19cc54c73aa74788;p=handbrake WinGui: - Fix Build git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3505 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- 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: . 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 /// public static void ShowExceptiowWindow(string shortError, string longError) { - frmExceptionWindow exceptionWindow = new frmExceptionWindow(); + ExceptionWindow exceptionWindow = new ExceptionWindow(); exceptionWindow.Setup(shortError, longError); exceptionWindow.Show(); }