From a2f43f0eac1d3dd693866b6c809212108139bce1 Mon Sep 17 00:00:00 2001 From: Martijn van Dijk Date: Mon, 7 Aug 2017 10:06:44 +0200 Subject: [PATCH] Fix Setup iOS wrong ctor --- nuspec/iOSContent/Setup.cs.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuspec/iOSContent/Setup.cs.pp b/nuspec/iOSContent/Setup.cs.pp index 4b3e47c25..9d6781f1f 100644 --- a/nuspec/iOSContent/Setup.cs.pp +++ b/nuspec/iOSContent/Setup.cs.pp @@ -13,8 +13,8 @@ namespace $rootnamespace$ { } - public Setup(IMvxApplicationDelegate applicationDelegate, UIWindow window, IMvxIosViewPresenter presenter) - : base(applicationDelegate, window, presenter) + public Setup(IMvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter) + : base(applicationDelegate, presenter) { }