summaryrefslogtreecommitdiff
path: root/ace/Service_Types.i
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commita7c03cabf931b077d70c6f80ec02c7728a429f49 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Service_Types.i
parent2aa7b10780ad7c670f588dce4ec341351a0646aa (diff)
downloadATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Service_Types.i')
-rw-r--r--ace/Service_Types.i8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Service_Types.i b/ace/Service_Types.i
index 84dd39ab8e8..78eb127cbfc 100644
--- a/ace/Service_Types.i
+++ b/ace/Service_Types.i
@@ -8,7 +8,7 @@ ACE_Service_Type_Impl::object (void) const
return this->obj_;
}
-ACE_INLINE const ASYS_TCHAR *
+ACE_INLINE const ACE_TCHAR *
ACE_Service_Type_Impl::name (void) const
{
ACE_TRACE ("ACE_Service_Type_Impl::name");
@@ -16,11 +16,11 @@ ACE_Service_Type_Impl::name (void) const
}
ACE_INLINE void
-ACE_Service_Type_Impl::name (const ASYS_TCHAR *n)
+ACE_Service_Type_Impl::name (const ACE_TCHAR *n)
{
ACE_TRACE ("ACE_Service_Type_Impl::name");
- delete [] (ASYS_TCHAR *) this->name_;
+ delete [] (ACE_TCHAR *) this->name_;
this->name_ = ACE::strnew (n);
}
@@ -45,7 +45,7 @@ ACE_Service_Object_Type::resume (void) const
}
ACE_INLINE int
-ACE_Service_Object_Type::info (ASYS_TCHAR **str, size_t len) const
+ACE_Service_Object_Type::info (ACE_TCHAR **str, size_t len) const
{
ACE_TRACE ("ACE_Service_Object_Type::info");
return ((ACE_Service_Object *) this->object ())->info (str, len);