diff options
Diffstat (limited to 'protocols/MSN/msn_libstr.cpp')
-rw-r--r-- | protocols/MSN/msn_libstr.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/protocols/MSN/msn_libstr.cpp b/protocols/MSN/msn_libstr.cpp index 9cb83bbb63..4eb7a1c220 100644 --- a/protocols/MSN/msn_libstr.cpp +++ b/protocols/MSN/msn_libstr.cpp @@ -20,24 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "msn_global.h"
-void replaceStr(char*& dest, const char* src)
-{
- if (src != NULL)
- {
- mir_free(dest);
- dest = mir_strdup(src);
- }
-}
-
-void replaceStr(wchar_t*& dest, const wchar_t* src)
-{
- if (src != NULL)
- {
- mir_free(dest);
- dest = mir_wstrdup(src);
- }
-}
-
static TCHAR* a2tf(const TCHAR* str, bool unicode)
{
if (str == NULL)
|