diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-08-12 14:35:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-08-12 14:35:27 +0000 |
commit | f19fe14d24b89120beba2e39920f2a1f7e1b958c (patch) | |
tree | 7fb98017e021d0b0ee074c474caf697219a2d9c2 /cppe/demo/IceE/MFC/client/HelloClientDlg.cpp | |
parent | change line endings (diff) | |
download | ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.tar.bz2 ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.tar.xz ice-f19fe14d24b89120beba2e39920f2a1f7e1b958c.zip |
Some ICE_ to ICEE_ renamings
Diffstat (limited to 'cppe/demo/IceE/MFC/client/HelloClientDlg.cpp')
-rw-r--r-- | cppe/demo/IceE/MFC/client/HelloClientDlg.cpp | 10 |
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 12364e3c4b7..75b78fd99c5 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 ICE_HAS_BATCH +#ifndef ICEE_HAS_BATCH (CButton*)GetDlgItem(IDC_FLUSH)->EnableWindow(FALSE); #endif @@ -132,7 +132,7 @@ CHelloClientDlg::OnSayHello() {
updateProxy();
_currentProxy->sayHello();
-#ifdef ICE_HAS_BATCH +#ifdef ICEE_HAS_BATCH if(_currentProxy->ice_isBatchOneway())
{
_status->SetWindowText(CString(" Queued batch request"));
@@ -152,7 +152,7 @@ CHelloClientDlg::OnSayHello() void
CHelloClientDlg::OnFlush()
{
-#ifdef ICE_HAS_BATCH +#ifdef ICEE_HAS_BATCH try
{
_communicator->flushBatchRequests();
@@ -172,7 +172,7 @@ CHelloClientDlg::OnShutdown() {
updateProxy();
_currentProxy->shutdown();
-#ifdef ICE_HAS_BATCH +#ifdef ICEE_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 ICE_HAS_BATCH +#ifdef ICEE_HAS_BATCH proxy = _proxy->ice_batchOneway();
break;
#else |