From 6c95c9585bf91fff894c62857e14824b66d3c304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Sch=C3=BCmann?= Date: Thu, 25 Dec 2014 00:41:52 +0000 Subject: SendSS: * German debug output englishfied git-svn-id: http://svn.miranda-ng.org/main/trunk@11613 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SendScreenshotPlus/src/Utils.cpp | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'plugins') diff --git a/plugins/SendScreenshotPlus/src/Utils.cpp b/plugins/SendScreenshotPlus/src/Utils.cpp index 2b7e028dbd..453f0db37a 100644 --- a/plugins/SendScreenshotPlus/src/Utils.cpp +++ b/plugins/SendScreenshotPlus/src/Utils.cpp @@ -241,52 +241,51 @@ FIBITMAP* CaptureScreen (HDC hDC,SIZE size,HWND hCapture){ #ifdef _DEBUG switch (FIP->FI_GetImageType(dib)){ case FIT_UNKNOWN: - OutputDebugStringA("FIBITMAP Typ: FIT_UNKNOWN\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_UNKNOWN\r\n" ); break; case FIT_BITMAP: - OutputDebugStringA("FIBITMAP Typ: FIT_BITMAP\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_BITMAP\r\n" ); break; case FIT_UINT16: - OutputDebugStringA("FIBITMAP Typ: FIT_UINT16\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_UINT16\r\n" ); break; case FIT_INT16: - OutputDebugStringA("FIBITMAP Typ: FIT_INT16\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_INT16\r\n" ); break; case FIT_UINT32: - OutputDebugStringA("FIBITMAP Typ: FIT_UINT32\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_UINT32\r\n" ); break; case FIT_INT32: - OutputDebugStringA("FIBITMAP Typ: FIT_INT32\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_INT32\r\n" ); break; case FIT_FLOAT: - OutputDebugStringA("FIBITMAP Typ: FIT_FLOAT\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_FLOAT\r\n" ); break; case FIT_DOUBLE: - OutputDebugStringA("FIBITMAP Typ: FIT_DOUBLE\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_DOUBLE\r\n" ); break; case FIT_COMPLEX: - OutputDebugStringA("FIBITMAP Typ: FIT_COMPLEX\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_COMPLEX\r\n" ); break; case FIT_RGB16: - OutputDebugStringA("FIBITMAP Typ: FIT_RGB16\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_RGB16\r\n" ); break; case FIT_RGBA16: - OutputDebugStringA("FIBITMAP Typ: FIT_RGBA16\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_RGBA16\r\n" ); break; case FIT_RGBF: - OutputDebugStringA("FIBITMAP Typ: FIT_RGBF\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_RGBF\r\n" ); break; case FIT_RGBAF: - OutputDebugStringA("FIBITMAP Typ: FIT_RGBAF\r\n" ); + OutputDebugStringA("FIBITMAP Type: FIT_RGBAF\r\n" ); break; default: - OutputDebugStringA("FIBITMAP Typ: non detectable image type (error)\r\n" ); + OutputDebugStringA("FIBITMAP Type: non detectable image type (error)\r\n" ); break; } BOOL inf = FIP->FI_IsTransparent(dib); OutputDebugStringA(inf ? "FIBITMAP Transparent: true\r\n" : "FIBITMAP Transparent: false\r\n"); #endif - return dib; } /* -- cgit v1.2.3