diff options
Diffstat (limited to 'cpp/test/uwp/controller/ControllerView.xaml.cpp')
-rw-r--r-- | cpp/test/uwp/controller/ControllerView.xaml.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/uwp/controller/ControllerView.xaml.cpp b/cpp/test/uwp/controller/ControllerView.xaml.cpp index 9ad8b372e85..cd356bc9d0d 100644 --- a/cpp/test/uwp/controller/ControllerView.xaml.cpp +++ b/cpp/test/uwp/controller/ControllerView.xaml.cpp @@ -199,9 +199,9 @@ ControllerHelperI::run() argv[_args.size()] = 0; try { - StreamHelper streamHelper(shared_from_this(), redirect()); + StreamHelper streamHelper(this, redirect()); _helper.reset(createHelper()); - _helper->setControllerHelper(shared_from_this()); + _helper->setControllerHelper(this); _helper->run(static_cast<int>(_args.size()), argv); completed(0); } |