diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-08-14 14:21:20 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-08-14 14:21:20 -0230 |
commit | 24bfa15cd0d267328f4bcfcf7c6ba1beb53155c5 (patch) | |
tree | 63edba5204d2b5633f65ea97d24650ed36671c95 /cs/demo/Ice/wpf/HelloWindow.xaml.cs | |
parent | Changed check for TCP fast path to not rely on WIN32_WINNRT (diff) | |
download | ice-24bfa15cd0d267328f4bcfcf7c6ba1beb53155c5.tar.bz2 ice-24bfa15cd0d267328f4bcfcf7c6ba1beb53155c5.tar.xz ice-24bfa15cd0d267328f4bcfcf7c6ba1beb53155c5.zip |
ICE-5636 Gui demos do not use ice_invocationTimeout
Diffstat (limited to 'cs/demo/Ice/wpf/HelloWindow.xaml.cs')
-rw-r--r-- | cs/demo/Ice/wpf/HelloWindow.xaml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/demo/Ice/wpf/HelloWindow.xaml.cs b/cs/demo/Ice/wpf/HelloWindow.xaml.cs index faefe0520b7..996b34f7a32 100644 --- a/cs/demo/Ice/wpf/HelloWindow.xaml.cs +++ b/cs/demo/Ice/wpf/HelloWindow.xaml.cs @@ -246,7 +246,7 @@ namespace Ice.wpf.client int timeout =(int)timeoutSlider.Value; if(timeout != 0) { - prx = prx.ice_timeout(timeout); + prx = prx.ice_invocationTimeout(timeout); } return Demo.HelloPrxHelper.uncheckedCast(prx); } |