diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:55:58 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:55:58 +0100 |
commit | d1a8285f818eb7e5c3d6a05709ea21a808490b8c (patch) | |
tree | 326578f0505cbed07cfe60de530022822dc237ac /app/wlib/mswlib/mswsplash.c | |
parent | 16e9630b79f0a7a90c6cedb6781175bb8b337dc1 (diff) |
New upstream version 5.1.0upstream/5.1.0
Diffstat (limited to 'app/wlib/mswlib/mswsplash.c')
-rw-r--r-- | app/wlib/mswlib/mswsplash.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/wlib/mswlib/mswsplash.c b/app/wlib/mswlib/mswsplash.c index bddd081..47df6b7 100644 --- a/app/wlib/mswlib/mswsplash.c +++ b/app/wlib/mswlib/mswsplash.c @@ -1,6 +1,5 @@ -/** +/** \file mswsplash.c * Splash window for Windows - * $header$ */ /* XTrkCad - Model Railroad CAD @@ -60,6 +59,7 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) { HDC hdc, hdcMem; RECT rect; + HGDIOBJ oldObject; UpdateWindow( hWnd ); @@ -69,10 +69,10 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) /* create a memory dc holding the bitmap */ hdcMem = CreateCompatibleDC( hdc ); - SelectObject( hdcMem, hBmp ); + oldObject = SelectObject( hdcMem, hBmp ); /* - show it in the uppler left corner + show it in the upper left corner the window is created with the size of the bitmap, so there is no need for any special transformation */ @@ -81,6 +81,7 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) hdcMem, 0, 0, SRCCOPY ); /* release the DCs that are not needed any more */ + SelectObject(hdcMem, oldObject); DeleteDC( hdcMem ); ReleaseDC( hWnd, hdc ); |