diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-12 11:52:38 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-12 11:52:38 +0000 |
commit | 4a94bf9e8e96ce495aedaf6ef0829e42a4489742 (patch) | |
tree | b1209abef436be321023aa6100646e884be3ada9 /TAO/tests/QtTests | |
parent | 1a4c23d60cf23b6e97877d6ecf77142e95e7b1fc (diff) | |
download | ATCD-4a94bf9e8e96ce495aedaf6ef0829e42a4489742.tar.gz |
Mon Feb 12 11:40:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/QtTests')
-rw-r--r-- | TAO/tests/QtTests/test_i.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/QtTests/test_i.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/TAO/tests/QtTests/test_i.cpp b/TAO/tests/QtTests/test_i.cpp index 1f58c4db4ae..750d6167c1e 100644 --- a/TAO/tests/QtTests/test_i.cpp +++ b/TAO/tests/QtTests/test_i.cpp @@ -14,7 +14,6 @@ LCD_Display_imp::LCD_Display_imp (CORBA::ORB_ptr orb) void LCD_Display_imp::shutdown (void) - ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, "The ORB has been shutdown, Close the windows to exit \n")); @@ -24,7 +23,6 @@ LCD_Display_imp::shutdown (void) void LCD_Display_imp::send_val (CORBA::Long val) - ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, "The value from server is <%d> \n", val)); diff --git a/TAO/tests/QtTests/test_i.h b/TAO/tests/QtTests/test_i.h index 1305ce328e4..f1d517adfa8 100644 --- a/TAO/tests/QtTests/test_i.h +++ b/TAO/tests/QtTests/test_i.h @@ -36,11 +36,9 @@ public: // ctor - void shutdown (void) - ACE_THROW_SPEC ((CORBA::SystemException)); + void shutdown (void); - void send_val (CORBA::Long val) - ACE_THROW_SPEC ((CORBA::SystemException)); + void send_val (CORBA::Long val); signals: void set_value (int val); |