diff options
author | Jose <jose@zeroc.com> | 2014-12-11 17:31:47 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-11 17:31:47 +0100 |
commit | 0060b79fc5f216fe5854b44c2e81e88a5475f173 (patch) | |
tree | d6cabeee01ea74ac1ff7f2e3797f29740792fc60 /cpp | |
parent | WinRT project build warnings: (diff) | |
download | ice-0060b79fc5f216fe5854b44c2e81e88a5475f173.tar.bz2 ice-0060b79fc5f216fe5854b44c2e81e88a5475f173.tar.xz ice-0060b79fc5f216fe5854b44c2e81e88a5475f173.zip |
Fixed (ICE-6130) - winrt hello demo timeout doesn't work
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp b/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp index b2f6e322033..8b781f919e4 100644 --- a/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp +++ b/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp @@ -99,7 +99,7 @@ hello::MainPage::proxy() if(timeout->Value > 0) { - prx = prx->ice_timeout(static_cast<int>(timeout->Value * 1000)); + prx = prx->ice_invocationTimeout(static_cast<int>(timeout->Value * 1000)); } return Demo::HelloPrx::uncheckedCast(prx); } |