From 4c81024ca2d6bff33df9b52d0600ef5146f6d86d Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 21 Oct 2010 13:17:23 +0200 Subject: Remove no longer used wstring_printf functions --- client/windows/platform_utils.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'client/windows/platform_utils.cpp') diff --git a/client/windows/platform_utils.cpp b/client/windows/platform_utils.cpp index 02709590..eb87468b 100644 --- a/client/windows/platform_utils.cpp +++ b/client/windows/platform_utils.cpp @@ -35,20 +35,6 @@ void string_vprintf(std::string& str, const char* format, va_list ap) } } -void wstring_vprintf(std::wstring& str, const wchar_t* format, va_list ap) -{ - int buf_size = 256; - for (;;) { - AutoArray buf(new wchar_t[buf_size]); - int r = vswprintf(buf.get(), buf_size, format, ap); - if (r != -1) { - str = buf.get(); - return; - } - buf_size *= 2; - } -} - HDC create_compatible_dc() { HDC dc = CreateCompatibleDC(NULL); -- cgit