diff options
author | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:41:52 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:41:52 +0000 |
commit | 6c95c9585bf91fff894c62857e14824b66d3c304 (patch) | |
tree | 02e07f71bda474e9832b1d0335b8cda27dbd2a35 /plugins | |
parent | 288f205d6c240ec833af74d921076b2098f8274d (diff) |
SendSS:
* German debug output englishfied
git-svn-id: http://svn.miranda-ng.org/main/trunk@11613 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Utils.cpp | 29 |
1 files changed, 14 insertions, 15 deletions
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; } /* |