Skip to content

Commit

Permalink
Merge pull request #2295 from vermaete/master
Browse files Browse the repository at this point in the history
spelling: changed implImented to implEmented
  • Loading branch information
jwillemsen authored Oct 25, 2024
2 parents e9de6a1 + dfd7698 commit 14368dd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion TAO/ChangeLogs/ChangeLog-2012a
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ Mon May 21 14:15:00 UTC 2012 Simon Massey <simon dot massey at prismtech dot c

* docs/dynany/index.html:
Missed updating this document with changes of Wed Feb 29 16:30:00 UTC 2012.
DynamicAny Value and BoxedValue types are implimented.
DynamicAny Value and BoxedValue types are implemented.

Sat May 19 14:28:57 CEST 2012 Johnny Willemsen <[email protected]>

Expand Down
20 changes: 10 additions & 10 deletions TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ::CORBA::ValueBase *
Event_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -63,7 +63,7 @@ ::CORBA::ValueBase *
Temperature_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -106,7 +106,7 @@ ::CORBA::ValueBase *
Position_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -186,7 +186,7 @@ ::CORBA::ValueBase *
Log_Msg_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -243,7 +243,7 @@ ::CORBA::ValueBase *
Event_List_Link_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -292,7 +292,7 @@ ::CORBA::ValueBase *
Event_List_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -431,7 +431,7 @@ ::CORBA::ValueBase *
Temperature_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -490,7 +490,7 @@ ::CORBA::ValueBase *
Position_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -546,7 +546,7 @@ ::CORBA::ValueBase *
Log_Msg_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down Expand Up @@ -599,7 +599,7 @@ ::CORBA::ValueBase *
Criterion_List_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ::CORBA::ValueBase *
TAO_LB_ObjectReferenceFactory::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
// Not implemented
return ret_val;
}

Expand Down
2 changes: 1 addition & 1 deletion TAO/tao/DynamicAny/DynValue_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class TAO_DynamicAny_Export TAO_DynValue_i
/// Read the value from the input stream
void from_inputCDR (TAO_InputCDR &);

/// These are not implimented!
/// These are not implemented!
/// Use copy() or assign() instead of these.
TAO_DynValue_i (const TAO_DynValue_i &src);
TAO_DynValue_i &operator= (const TAO_DynValue_i &src);
Expand Down
2 changes: 1 addition & 1 deletion TAO/tao/Valuetype/ValueBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ CORBA::ValueBase::_copy_value ()
ACE_VERSIONED_NAMESPACE_NAME::__ace_assert (
__FILE__,
__LINE__,
ACE_TEXT_CHAR_TO_TCHAR ("Valuetype's _copy_value() should be implimented in user's most derived class"));
ACE_TEXT_CHAR_TO_TCHAR ("Valuetype's _copy_value() should be implemented in user's most derived class"));
return 0;
}

Expand Down

0 comments on commit 14368dd

Please sign in to comment.