summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 03:40:01 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 03:40:01 +0000
commit20863d55e76be02b9fcda0ea2318f09f264a217c (patch)
tree1da67f967cb741395cdb2e73979e73cbddb8d2a2
parent2331ca629841855ac6667b73d9acb4d9c8d51176 (diff)
downloadATCD-20863d55e76be02b9fcda0ea2318f09f264a217c.tar.gz
Double parans about the throw specs.
-rw-r--r--TAO/examples/Simple/grid/Grid_i.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/examples/Simple/grid/Grid_i.h b/TAO/examples/Simple/grid/Grid_i.h
index 6f6dd3ae6fc..96d5bdf6e2e 100644
--- a/TAO/examples/Simple/grid/Grid_i.h
+++ b/TAO/examples/Simple/grid/Grid_i.h
@@ -43,38 +43,38 @@ public:
// Destructor
virtual CORBA::Short width (CORBA_Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Returns the width of the grid
virtual CORBA::Short height (CORBA_Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Returns the height of the grid
virtual void width (CORBA::Short,
CORBA_Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Sets the width of the grid.
virtual void height (CORBA::Short,
CORBA_Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Sets the height of the grid.
virtual void set (CORBA::Short,
CORBA::Short,
CORBA::Long,
CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Sets the grid value.
virtual CORBA::Long get (CORBA::Short,
CORBA::Short,
CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Gets the grid value.
virtual void destroy (CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Destroy the grid.
private:
@@ -106,11 +106,11 @@ public:
virtual Grid_ptr make_grid (CORBA::Short,
CORBA::Short,
CORBA::Environment &_env)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// This function creates and returns a <Grid>.
virtual void shutdown (CORBA::Environment &env)
- ACE_THROW_SPEC (CORBA::SystemException);
+ ACE_THROW_SPEC ((CORBA::SystemException));
// Shutdown the server.
void orb (CORBA::ORB_ptr o);