summaryrefslogtreecommitdiff
path: root/protocols/JabberG
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 /protocols/JabberG
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 'protocols/JabberG')
-rw-r--r--protocols/JabberG/jabber.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/protocols/JabberG/jabber.h b/protocols/JabberG/jabber.h
index d990982d90..fd4e8a77b1 100644
--- a/protocols/JabberG/jabber.h
+++ b/protocols/JabberG/jabber.h
@@ -494,33 +494,6 @@ struct JABBER_MUC_JIDLIST_INFO
typedef void ( CJabberProto::*JABBER_FORM_SUBMIT_FUNC )( HXML values, void *userdata );
-class _A2T
-{
- TCHAR* buf;
-
-public:
- __forceinline _A2T( const char* s ) : buf( mir_a2t( s )) {}
- __forceinline _A2T( const char* s, int cp ) : buf( mir_a2t_cp( s, cp )) {}
- ~_A2T() { mir_free(buf); }
-
- __forceinline operator TCHAR*() const
- { return buf;
- }
-};
-
-class _T2A
-{
- char* buf;
-
-public:
- __forceinline _T2A( const TCHAR* s ) : buf( mir_t2a( s )) {}
- __forceinline ~_T2A() { mir_free(buf); }
-
- __forceinline operator char*() const
- { return buf;
- }
-};
-
//---- jabber_treelist.c ------------------------------------------------
typedef struct TTreeList_ItemInfo *HTREELISTITEM;