summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2014-12-18 10:32:37 -0500
committerJoe George <joe@zeroc.com>2014-12-18 10:33:36 -0500
commited2da48e5c0636c7fcd95d54cd50bf38f8ecda98 (patch)
tree80d762ac1b592fea5dc29ceef7c396cb3db36855 /cpp
parentMinor update to testicedist.py (diff)
downloadice-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.cpp5
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