Fix misspellings in comments and documentation

No real changes.

Closes https://github.com/wxWidgets/wxWidgets/pull/870
This commit is contained in:
Blake-Eryx
2018-07-31 13:16:40 +02:00
committed by Vadim Zeitlin
parent 11e6a40a97
commit 49e20a961d
19 changed files with 28 additions and 28 deletions

View File

@@ -172,7 +172,7 @@ public:
to transfer ownership of that reference to this ref holder. If the object comes from
a Create or Copy method then this is the correct behaviour. If the object comes from
a Get method then you must CFRetain it yourself before passing it to this constructor.
A handy way to do this is to use the non-member wxCFRefFromGet factory funcion.
A handy way to do this is to use the non-member wxCFRefFromGet factory function.
*/
wxCFRef(refType p) : m_ptr(p)
{
@@ -186,7 +186,7 @@ public:
to transfer ownership of that reference to this ref holder. If the object comes from
a Create or Copy method then this is the correct behaviour. If the object comes from
a Get method then you must CFRetain it yourself before passing it to this constructor.
A handy way to do this is to use the non-member wxCFRefFromGet factory funcion.
A handy way to do this is to use the non-member wxCFRefFromGet factory function.
This method is templated and takes an otherType *p. This prevents implicit conversion
using an operator refType() in a different ref-holding class type.
*/