diff options
author | Jose <jose@zeroc.com> | 2018-06-05 07:29:43 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-05 07:29:43 +0200 |
commit | 93b44f272ca2799818f358ad857db075011b7db8 (patch) | |
tree | c83d428c4da5b41d90bcfcdf5711b535c1fe121e /cpp/test/ios/controller | |
parent | Remove unnecessary memset (diff) | |
download | ice-93b44f272ca2799818f358ad857db075011b7db8.tar.bz2 ice-93b44f272ca2799818f358ad857db075011b7db8.tar.xz ice-93b44f272ca2799818f358ad857db075011b7db8.zip |
iOS test controller build fixes
Diffstat (limited to 'cpp/test/ios/controller')
-rw-r--r-- | cpp/test/ios/controller/Bundle/ControllerI.mm | 4 |
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); } |