summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-01 21:37:18 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-01 21:37:18 +0000
commit57c87234383026f1f57a3044f0d934fc13ea9d0e (patch)
treea296589c5e16dff5540923582207007552476f61 /plugins/UserInfoEx
parent5e52c4592330b5971a107da1bafd115fafb38f54 (diff)
- RecentContacts added;
- _A2T & _T2A classes moved to m_utils.h git-svn-id: http://svn.miranda-ng.org/main/trunk@255 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r--plugins/UserInfoEx/mir_string.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/plugins/UserInfoEx/mir_string.h b/plugins/UserInfoEx/mir_string.h
index ca8d90d2d0..558e86e508 100644
--- a/plugins/UserInfoEx/mir_string.h
+++ b/plugins/UserInfoEx/mir_string.h
@@ -31,28 +31,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