summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp6
2 files changed, 9 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 905a6946f8c..ce024d04e77 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Thu Apr 3 15:15:00 UTC 2008 Simon Massey <simon dot massey at prismtech dot com>
+
+ * orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp:
+
+ Another "interface" VC8 MFC conflict.
+
Thu Apr 3 09:40:00 UTC 2008 Simon Massey <simon dot massey at prismtech dot com>
* orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.h:
diff --git a/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp b/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp
index f3f41ddcd7c..6f978d9d564 100644
--- a/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp
+++ b/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp
@@ -257,10 +257,10 @@ TAO_CEC_TypedEventChannel::cache_interface_description (const char *interface_)
this->interface_repository_->lookup_id (interface_);
// Narrow the interface
- CORBA::InterfaceDef_var interface =
+ CORBA::InterfaceDef_var intface =
CORBA::InterfaceDef::_narrow (contained.in ());
- if (CORBA::is_nil (interface.in () ))
+ if (CORBA::is_nil (intface.in () ))
{
if (TAO_debug_level >= 10)
{
@@ -274,7 +274,7 @@ TAO_CEC_TypedEventChannel::cache_interface_description (const char *interface_)
{
// Obtain the full interface description
CORBA::InterfaceDef::FullInterfaceDescription_var fid =
- interface->describe_interface ();
+ intface->describe_interface ();
// Obtain the base interfaces
this->base_interfaces_ = fid->base_interfaces;