summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/wpf/HelloWindow.xaml.cs
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-12-03 13:35:19 -0330
committerDwayne Boone <dwayne@zeroc.com>2009-12-03 13:35:19 -0330
commitdf4d7f5ad7ee4d2f4b81ae24a8734f626111b0bf (patch)
tree268c4e5cc9ad7485d401807fff8b922be39f411b /cs/demo/Ice/wpf/HelloWindow.xaml.cs
parentRemove IceHome setting from projects in demo distribution (diff)
downloadice-df4d7f5ad7ee4d2f4b81ae24a8734f626111b0bf.tar.bz2
ice-df4d7f5ad7ee4d2f4b81ae24a8734f626111b0bf.tar.xz
ice-df4d7f5ad7ee4d2f4b81ae24a8734f626111b0bf.zip
Fixed minor inconsistency between hello graphical demos
Diffstat (limited to 'cs/demo/Ice/wpf/HelloWindow.xaml.cs')
-rw-r--r--cs/demo/Ice/wpf/HelloWindow.xaml.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cs/demo/Ice/wpf/HelloWindow.xaml.cs b/cs/demo/Ice/wpf/HelloWindow.xaml.cs
index c48a1d94eb6..8cdf150a153 100644
--- a/cs/demo/Ice/wpf/HelloWindow.xaml.cs
+++ b/cs/demo/Ice/wpf/HelloWindow.xaml.cs
@@ -183,10 +183,9 @@ namespace Ice.wpf.client
{
if(!deliveryModeIsBatch())
{
- AsyncResult<Demo.Callback_Hello_sayHello> result = hello.begin_sayHello(delay);
status.Content = "Sending request";
SayHelloCB cb = new SayHelloCB(this);
- result.whenCompleted(cb.response, cb.exception).whenSent(cb.sent);
+ hello.begin_sayHello(delay).whenCompleted(cb.response, cb.exception).whenSent(cb.sent);
}
else
{