summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl5
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl b/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
index 271543a2f82..ade45a1057e 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
+++ b/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
@@ -1,7 +1,8 @@
// $Id$
ACE_INLINE int
-TAO_NS_PropertySeq::find (const ACE_CString& name, CosNotification::PropertyValue& value) const
+TAO_NS_PropertySeq::find (const char* name, CosNotification::PropertyValue& value) const
{
- return this->property_map_.find (name, value);
+ ACE_CString str_name (name);
+ return this->property_map_.find (str_name, value);
}