summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-08-25 12:08:14 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-08-25 12:08:14 +0000
commit6ce4b99cb3dc5522ecf8fa337de661055ef5708c (patch)
tree99c18755908a24bfd0675fd2f6ec57e4cc54039c /src
parent795f8fd245582f4cc66b3320418b13b8e15729b0 (diff)
MString removed from Jabber & IRC
git-svn-id: http://svn.miranda-ng.org/main/trunk@5824 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r--src/mir_core/mstring.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mir_core/mstring.cpp b/src/mir_core/mstring.cpp
index fc1b4d60f8..8d896f89d1 100644
--- a/src/mir_core/mstring.cpp
+++ b/src/mir_core/mstring.cpp
@@ -116,29 +116,3 @@ MIR_CORE_DLL(void) mirstr_unlock(CMStringData* pThis)
pThis->nRefs = 1;
}
}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-// ChTraitsCRT<wchar_t>
-
-int __stdcall ChTraitsCRT<wchar_t>::GetFormattedLength( LPCWSTR pszFormat, va_list args )
-{
- return _vscwprintf(pszFormat, args);
-}
-
-int __stdcall ChTraitsCRT<wchar_t>::Format( LPWSTR pszBuffer, size_t nLength, LPCWSTR pszFormat, va_list args)
-{
- return _vsnwprintf(pszBuffer, nLength, pszFormat, args);
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-// ChTraitsCRT<char>
-
-int __stdcall ChTraitsCRT<char>::GetFormattedLength( LPCSTR pszFormat, va_list args )
-{
- return _vscprintf(pszFormat, args);
-}
-
-int __stdcall ChTraitsCRT<char>::Format( LPSTR pszBuffer, size_t nlength, LPCSTR pszFormat, va_list args )
-{
- return vsprintf_s(pszBuffer, nlength, pszFormat, args);
-}