summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 13:49:23 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 13:49:23 +0000
commit27aef2c2c02744ffc7398489c965d7824d80dce1 (patch)
tree209c74a82863164e37d8efb53459b38273b24e69
parent397cef2a552a80bc9d991803ed25e1b1f0288dc1 (diff)
downloadATCD-27aef2c2c02744ffc7398489c965d7824d80dce1.tar.gz
added a bunch of .in () dereferences
-rw-r--r--TAO/tao/DynUnion_i.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/DynUnion_i.cpp b/TAO/tao/DynUnion_i.cpp
index 892ff62eeb7..bf16c24f11f 100644
--- a/TAO/tao/DynUnion_i.cpp
+++ b/TAO/tao/DynUnion_i.cpp
@@ -282,7 +282,7 @@ TAO_DynUnion_i::next (CORBA::Environment &env)
++this->index_;
- if (!CORBA::is_nil (this->member_))
+ if (!CORBA::is_nil (this->member_.in ()))
this->member_->destroy (env);
this->member_ =
@@ -301,7 +301,7 @@ TAO_DynUnion_i::seek (CORBA::Long index,
this->index_ = index;
- if (!CORBA::is_nil (this->member_))
+ if (!CORBA::is_nil (this->member_.in ()))
this->member_->destroy (env);
this->member_ =
@@ -319,7 +319,7 @@ TAO_DynUnion_i::rewind (CORBA::Environment &env)
this->index_ = 0;
- if (!CORBA::is_nil (this->member_))
+ if (!CORBA::is_nil (this->member_.in ()))
this->member_->destroy (env);
this->member_ =
@@ -1353,7 +1353,7 @@ TAO_DynUnion_i::set_from_any (const CORBA_Any& any,
CORBA_Any disc_any (disc_tc,
cdr.start ());
- if (!CORBA::is_nil (this->discriminator_))
+ if (!CORBA::is_nil (this->discriminator_.in()))
this->discriminator_->destroy (env);
// Set the discriminator holder.
@@ -1409,7 +1409,7 @@ TAO_DynUnion_i::set_from_any (const CORBA_Any& any,
env),
cdr.start ());
- if (!CORBA::is_nil (this->member_))
+ if (!CORBA::is_nil (this->member_.in ()))
this->member_->destroy (env);
this->member_ = TAO_DynAny_i::create_dyn_any (member_any,