summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-19 02:53:00 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-19 02:53:00 +0000
commitfb7e5ebc62fc689ae4708ae22207f1ba6452c761 (patch)
tree0440d3447b88663f3dbaae2b33074547578cebea /TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
parenta315910192ad14fe7182a2070451f9df4e98c4ef (diff)
downloadATCD-fb7e5ebc62fc689ae4708ae22207f1ba6452c761.tar.gz
ChangeLogTag: Wed Jun 18 22:27:49 2003 Pradeep Gore <pradeep@oomworks.com>
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);
}