summaryrefslogtreecommitdiff
path: root/cpp/test/uwp/controller/ControllerView.xaml.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-06-04 17:49:35 +0200
committerJose <jose@zeroc.com>2018-06-04 17:49:35 +0200
commit4bdff2cf010ecddfeda573c4bb1d4dc8efa60ee7 (patch)
tree9ac02041bd670e53f4f3f50fccafe1b0c3765b09 /cpp/test/uwp/controller/ControllerView.xaml.cpp
parentJavaScript Buffer.reset should set limit to the new capacity (diff)
downloadice-4bdff2cf010ecddfeda573c4bb1d4dc8efa60ee7.tar.bz2
ice-4bdff2cf010ecddfeda573c4bb1d4dc8efa60ee7.tar.xz
ice-4bdff2cf010ecddfeda573c4bb1d4dc8efa60ee7.zip
UWP test controller fixes
Diffstat (limited to 'cpp/test/uwp/controller/ControllerView.xaml.cpp')
-rw-r--r--cpp/test/uwp/controller/ControllerView.xaml.cpp4
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);
}