diff options
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
|