diff options
author | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
commit | cbe92e540a7f02f0bdf93192424bd119189365b7 (patch) | |
tree | 411c50dc0ae9c669d31a940b1b4903b5deac4f12 /cpp/test/uwp/controller/App.xaml.cpp | |
parent | Fixed Util.py check for binary installation directory on Windows (diff) | |
download | ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.bz2 ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.xz ice-cbe92e540a7f02f0bdf93192424bd119189365b7.zip |
Do not use Ice::Application for Ice testsuite
Diffstat (limited to 'cpp/test/uwp/controller/App.xaml.cpp')
-rw-r--r-- | cpp/test/uwp/controller/App.xaml.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/uwp/controller/App.xaml.cpp b/cpp/test/uwp/controller/App.xaml.cpp index f70263943c3..add494a6a9f 100644 --- a/cpp/test/uwp/controller/App.xaml.cpp +++ b/cpp/test/uwp/controller/App.xaml.cpp @@ -8,10 +8,10 @@ // ********************************************************************** #include "pch.h" -#include "ViewController.xaml.h" +#include "ControllerView.xaml.h" #include <ppltasks.h> -using namespace Controller; +using namespace Test; using namespace Platform; using namespace Windows::ApplicationModel; @@ -63,7 +63,7 @@ void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEvent // Create a Frame to act navigation context and navigate to the first page auto rootFrame = ref new Frame(); - if(!rootFrame->Navigate(TypeName(ViewController::typeid))) + if(!rootFrame->Navigate(TypeName(ControllerView::typeid))) { throw ref new FailureException("Failed to create initial page"); } |