diff --git a/WGneu/App.xaml.cs b/WGneu/App.xaml.cs index 5afc810..81a3a22 100644 --- a/WGneu/App.xaml.cs +++ b/WGneu/App.xaml.cs @@ -21,22 +21,22 @@ namespace WGneu { MainDispatcher = Dispatcher; } - protected override void OnStartup(StartupEventArgs e) { + protected override void OnStartup(StartupEventArgs evt) { Utils.RunBackground("HTML Initialization", () => Documents.Html.Init(PrintingReadyChanged)); Utils.RunBackground("PDF Initialization", () => Documents.Pdf.Init(PrintingReadyChanged)); - base.OnStartup(e); + base.OnStartup(evt); } - protected override void OnExit(ExitEventArgs e) { + protected override void OnExit(ExitEventArgs evt) { Utils.RunBackground("PDF Close", () => Documents.Pdf.Close()); - base.OnExit(e); + base.OnExit(evt); } private void PrintingReadyChanged() { Dispatcher.BeginInvoke(OnPrintingReadyChanged, new EventArgs()); } - protected void OnPrintingReadyChanged(EventArgs e) { + protected void OnPrintingReadyChanged(EventArgs evt) { foreach (Window w in Windows) { foreach (var b in Utils.FindVisualChilds