summaryrefslogtreecommitdiffstats
path: root/client/x11/platform_utils.cpp
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-10-21 13:17:23 +0200
committerHans de Goede <hdegoede@redhat.com>2010-10-21 13:22:01 +0200
commit4c81024ca2d6bff33df9b52d0600ef5146f6d86d (patch)
treef001da6d9fbc2457466579aa7c7de95dbf7def5d /client/x11/platform_utils.cpp
parentfa2e125ec4535b4a56a33aed76e3a0f9ce75eca0 (diff)
downloadspice-4c81024ca2d6bff33df9b52d0600ef5146f6d86d.tar.gz
spice-4c81024ca2d6bff33df9b52d0600ef5146f6d86d.tar.xz
spice-4c81024ca2d6bff33df9b52d0600ef5146f6d86d.zip
Remove no longer used wstring_printf functions
Diffstat (limited to 'client/x11/platform_utils.cpp')
-rw-r--r--client/x11/platform_utils.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/client/x11/platform_utils.cpp b/client/x11/platform_utils.cpp
index a646a806..5ca68f44 100644
--- a/client/x11/platform_utils.cpp
+++ b/client/x11/platform_utils.cpp
@@ -28,21 +28,3 @@ void string_vprintf(std::string& str, const char* format, va_list ap)
vsnprintf(buf.get(), len, format, ap);
str = buf.get();
}
-
-void wstring_vprintf(std::wstring& str, const wchar_t* format, va_list ap)
-{
- int buf_size = 256;
- for (;;) {
- AutoArray<wchar_t> buf(new wchar_t[buf_size]);
- va_list ap_test;
- va_copy(ap_test, ap);
- int r = vswprintf(buf.get(), buf_size, format, ap_test);
- va_end(ap_test);
- if (r != -1) {
- str = buf.get();
- return;
- }
- buf_size *= 2;
- }
-}
-