summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs')
-rw-r--r--win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs
index 5d9b0daf5..2be728b58 100644
--- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs
+++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs
@@ -34,11 +34,19 @@ namespace HandBrakeWPF.Startup
/// <summary>
/// The Castle Bootstrapper
/// </summary>
- public class AppBootstrapper : Bootstrapper<IShellViewModel>
+ public class AppBootstrapper : BootstrapperBase
{
private SimpleContainer container;
/// <summary>
+ /// Initializes a new instance of the <see cref="AppBootstrapper"/> class.
+ /// </summary>
+ public AppBootstrapper()
+ {
+ this.Initialize();
+ }
+
+ /// <summary>
/// Configure Castle Windsor
/// </summary>
protected override void Configure()