summaryrefslogtreecommitdiff
path: root/TAO/examples/mfc
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 19:59:59 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 19:59:59 +0000
commit7fccfcc1fde5aa0ea1cf28d8f552e066472741e5 (patch)
tree3bd67f62cef397ed9cf6cf9f537c8a2024b8dffe /TAO/examples/mfc
parent7908b50258e27a9cb8a46853349094f5dc367596 (diff)
downloadATCD-7fccfcc1fde5aa0ea1cf28d8f552e066472741e5.tar.gz
ChangeLogTag: Thu Jan 25 19:56:33 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/examples/mfc')
-rw-r--r--TAO/examples/mfc/client.cpp3
-rw-r--r--TAO/examples/mfc/server.cpp6
2 files changed, 3 insertions, 6 deletions
diff --git a/TAO/examples/mfc/client.cpp b/TAO/examples/mfc/client.cpp
index 2ce271401ff..5d7fdacb675 100644
--- a/TAO/examples/mfc/client.cpp
+++ b/TAO/examples/mfc/client.cpp
@@ -53,8 +53,7 @@ main (int argc, char *argv[])
}
catch (const CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- "Caught exception:");
+ ex._tao_print_exception ("Caught exception:");
return 1;
}
diff --git a/TAO/examples/mfc/server.cpp b/TAO/examples/mfc/server.cpp
index 133016367c6..85ea611d723 100644
--- a/TAO/examples/mfc/server.cpp
+++ b/TAO/examples/mfc/server.cpp
@@ -83,8 +83,7 @@ spawn_my_orb_thread (void *)
}
catch (const CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- "Caught exception:");
+ ex._tao_print_exception ("Caught exception:");
return 0;
}
@@ -123,8 +122,7 @@ CServerApp::~CServerApp()
}
catch (const CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- "Caught exception:");
+ ex._tao_print_exception ("Caught exception:");
}