diff options
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); } |