diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-08 17:26:53 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-07-08 17:26:53 +0000 |
commit | aaa6b9eba58239dee4b2b6817ac809b80461c630 (patch) | |
tree | d714f6bbdb882fcf39c2285792d3d60ab3c936a0 /plugins/SendScreenshotPlus/mir_string.h | |
parent | 7de2582e33a521a9e1950c9f1681a660b4a10894 (diff) |
SendScreenshotPlus:
adopted
git-svn-id: http://svn.miranda-ng.org/main/trunk@856 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/mir_string.h')
-rw-r--r-- | plugins/SendScreenshotPlus/mir_string.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/plugins/SendScreenshotPlus/mir_string.h b/plugins/SendScreenshotPlus/mir_string.h index 11f8276d1b..882cd38896 100644 --- a/plugins/SendScreenshotPlus/mir_string.h +++ b/plugins/SendScreenshotPlus/mir_string.h @@ -33,28 +33,6 @@ Last change by : $Author: ing.u.horn $ #ifndef _MIR_STRING_H_INCLUDED_
#define _MIR_STRING_H_INCLUDED_
-class _A2T
-{
- public:
- _A2T(const char* s) :
- buf(mir_a2t(s))
- {}
-
- _A2T(const char* s, int cp) :
- buf(mir_a2t_cp(s, cp))
- {}
-
- ~_A2T()
- { mir_free(buf);
- }
-
- __inline operator TCHAR*() const
- { return buf;
- }
-
- private: TCHAR* buf;
-};
-
#define mir_wcsdup mir_wstrdup
#ifdef _UNICODE
|