diff options
author | Joe George <joe@zeroc.com> | 2014-12-18 10:32:37 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2014-12-18 10:33:36 -0500 |
commit | ed2da48e5c0636c7fcd95d54cd50bf38f8ecda98 (patch) | |
tree | 80d762ac1b592fea5dc29ceef7c396cb3db36855 /cpp | |
parent | Minor update to testicedist.py (diff) | |
download | ice-ed2da48e5c0636c7fcd95d54cd50bf38f8ecda98.tar.bz2 ice-ed2da48e5c0636c7fcd95d54cd50bf38f8ecda98.tar.xz ice-ed2da48e5c0636c7fcd95d54cd50bf38f8ecda98.zip |
Fixes and cleanup to ICE-6169
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp b/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp index a37ccbc056a..dcf0a5956c8 100644 --- a/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp +++ b/cpp/demo/Ice/winrt/hello/MainPage.xaml.cpp @@ -55,7 +55,7 @@ hello::MainPage::updateProxy() string h = IceUtil::wstringToString(hostname->Text->Data()); if (h.empty()) { - print("Host is empty"); + print("Host is empty."); _helloPrx = 0; return; } @@ -114,6 +114,7 @@ hello::MainPage::updateProxy() prx = prx->ice_invocationTimeout(static_cast<int>(timeout->Value * 1000)); } _helloPrx = Demo::HelloPrx::uncheckedCast(prx); + print("Ready."); } bool @@ -177,7 +178,7 @@ hello::MainPage::hello_Click(Platform::Object^ sender, Windows::UI::Xaml::Routed else if(deliveryMode > 1) { hello->IsEnabled = true; - print("Ready"); + print("Ready."); } } else |