summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-12-11 17:31:47 +0100
committerJose <jose@zeroc.com>2014-12-11 17:31:47 +0100
commit0060b79fc5f216fe5854b44c2e81e88a5475f173 (patch)
treed6cabeee01ea74ac1ff7f2e3797f29740792fc60 /cpp
parentWinRT project build warnings: (diff)
downloadice-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.cpp2
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);
}