summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-06-05 07:29:43 +0200
committerJose <jose@zeroc.com>2018-06-05 07:29:43 +0200
commit93b44f272ca2799818f358ad857db075011b7db8 (patch)
treec83d428c4da5b41d90bcfcdf5711b535c1fe121e /cpp
parentRemove unnecessary memset (diff)
downloadice-93b44f272ca2799818f358ad857db075011b7db8.tar.bz2
ice-93b44f272ca2799818f358ad857db075011b7db8.tar.xz
ice-93b44f272ca2799818f358ad857db075011b7db8.zip
iOS test controller build fixes
Diffstat (limited to 'cpp')
-rw-r--r--cpp/test/ios/controller/Bundle/ControllerI.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/ios/controller/Bundle/ControllerI.mm b/cpp/test/ios/controller/Bundle/ControllerI.mm
index c73791edafa..7a3aca76931 100644
--- a/cpp/test/ios/controller/Bundle/ControllerI.mm
+++ b/cpp/test/ios/controller/Bundle/ControllerI.mm
@@ -239,9 +239,9 @@ ControllerHelperI::run()
argv[_args.size()] = 0;
try
{
- Test::StreamHelper streamHelper(ICE_SHARED_FROM_THIS, redirect());
+ Test::StreamHelper streamHelper(this, redirect());
_helper.reset(createHelper());
- _helper->setControllerHelper(ICE_SHARED_FROM_THIS);
+ _helper->setControllerHelper(this);
_helper->run(static_cast<int>(_args.size()), argv);
completed(0);
}