diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-11 20:09:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-11 20:09:03 +0000 |
commit | bbd8d01ee5bbf5c27d7fe5044a8d51a624e480ae (patch) | |
tree | 6a47a2ac754726720e10b2510f4befc8a1daff1f /include/m_system_cpp.h | |
parent | a0cef1d43a718ea27333293280347a19a914c9a3 (diff) |
- typo fix;
git-svn-id: http://svn.miranda-ng.org/main/trunk@14124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_system_cpp.h')
-rw-r--r-- | include/m_system_cpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 40a91df399..a0679e496b 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -52,7 +52,7 @@ public: __inline T* operator->() const { return data; }
__inline operator T*() const { return data; }
__inline operator INT_PTR() const { return (INT_PTR)data; }
- __inline T* detouch() { T *res = data; data = NULL; return res; }
+ __inline T* detach() { T *res = data; data = NULL; return res; }
};
typedef mir_ptr<char> ptrA;
|