diff options
author | René Schümann <white06tiger@gmail.com> | 2013-11-05 17:59:29 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2013-11-05 17:59:29 +0000 |
commit | f6f7445b5887ce9f3a7464cd95abc7e649daa292 (patch) | |
tree | 8c2e79eab6d79b733dd7cfa23964d527f0aa7562 /plugins/SendScreenshotPlus/src/Utils.cpp | |
parent | 4d110f6db480ccb999e2089aff73a85e6e349ab5 (diff) |
ooops...
- removed slipped through todo's / comments
! fixed bug I introduced (file numbering...) also fixed a case were file-number exceeds "maximum" of 99999 (5 chars)
* changed default output format to "png" instead of "tif" (why tif? it can't even be used by everyone...)
! fixed "maybe" uninitialized variable
! fixed memory leak
! fixed freeing a pointer thats still used (man this code's ugly..)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6791 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/Utils.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/Utils.cpp b/plugins/SendScreenshotPlus/src/Utils.cpp index f9e10251c8..de98ff1e6a 100644 --- a/plugins/SendScreenshotPlus/src/Utils.cpp +++ b/plugins/SendScreenshotPlus/src/Utils.cpp @@ -261,7 +261,7 @@ FIBITMAP* CaptureScreen (HDC hDC,SIZE size,HWND hCapture){ break; } BOOL inf = FIP->FI_IsTransparent(dib); - OutputDebugStringA(inf ? "FIBITMAP Transparent: true\r\n" : "FIBITMAP Transparent: fase\r\n"); + OutputDebugStringA(inf ? "FIBITMAP Transparent: true\r\n" : "FIBITMAP Transparent: false\r\n"); #endif return dib; |