summaryrefslogtreecommitdiff
path: root/cppe/demo/IceE/MFC/client/HelloClientDlg.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-08-12 04:44:58 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-08-12 04:44:58 +0000
commit708d97e4bd4acf9d7c1bad093d0c3847282b09c2 (patch)
treef6d6de12f2b778f67d52906c8978578bb278b4e6 /cppe/demo/IceE/MFC/client/HelloClientDlg.cpp
parenthttp://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=439 (diff)
downloadice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.bz2
ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.xz
ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.zip
ICEE_ -> ICE_
Diffstat (limited to 'cppe/demo/IceE/MFC/client/HelloClientDlg.cpp')
-rw-r--r--cppe/demo/IceE/MFC/client/HelloClientDlg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppe/demo/IceE/MFC/client/HelloClientDlg.cpp b/cppe/demo/IceE/MFC/client/HelloClientDlg.cpp
index 75b78fd99c5..12364e3c4b7 100644
--- a/cppe/demo/IceE/MFC/client/HelloClientDlg.cpp
+++ b/cppe/demo/IceE/MFC/client/HelloClientDlg.cpp
@@ -64,7 +64,7 @@ CHelloClientDlg::OnInitDialog()
//
// Disable flush button if built without batch support.
//
-#ifndef ICEE_HAS_BATCH
+#ifndef ICE_HAS_BATCH
(CButton*)GetDlgItem(IDC_FLUSH)->EnableWindow(FALSE);
#endif
@@ -132,7 +132,7 @@ CHelloClientDlg::OnSayHello()
{
updateProxy();
_currentProxy->sayHello();
-#ifdef ICEE_HAS_BATCH
+#ifdef ICE_HAS_BATCH
if(_currentProxy->ice_isBatchOneway())
{
_status->SetWindowText(CString(" Queued batch request"));
@@ -152,7 +152,7 @@ CHelloClientDlg::OnSayHello()
void
CHelloClientDlg::OnFlush()
{
-#ifdef ICEE_HAS_BATCH
+#ifdef ICE_HAS_BATCH
try
{
_communicator->flushBatchRequests();
@@ -172,7 +172,7 @@ CHelloClientDlg::OnShutdown()
{
updateProxy();
_currentProxy->shutdown();
-#ifdef ICEE_HAS_BATCH
+#ifdef ICE_HAS_BATCH
if(_currentProxy->ice_isBatchOneway())
{
_status->SetWindowText(CString(" Queued shutdown request"));
@@ -209,7 +209,7 @@ CHelloClientDlg::updateProxy()
proxy = _proxy->ice_oneway();
break;
case 2:
-#ifdef ICEE_HAS_BATCH
+#ifdef ICE_HAS_BATCH
proxy = _proxy->ice_batchOneway();
break;
#else