projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a08f21c
)
don't release the DC which we don't own in wxUSE_UXTHEME case
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 22 Sep 2006 00:50:53 +0000
(
00:50
+0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 22 Sep 2006 00:50:53 +0000
(
00:50
+0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41363
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/msw/bmpbuttn.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/msw/bmpbuttn.cpp
b/src/msw/bmpbuttn.cpp
index b82972500eaeb3ba14bd02d360e8308c21374792..d4848e4d5fc96c61c0c468beb60e624aae8b0e78 100644
(file)
--- a/
src/msw/bmpbuttn.cpp
+++ b/
src/msw/bmpbuttn.cpp
@@
-408,8
+408,7
@@
bool wxBitmapButton::MSWOnDraw(WXDRAWITEMSTRUCT *item)
}
// draw the bitmap
}
// draw the bitmap
- wxClientDC dst;
- dst.SetHDC((WXHDC) hDC, false);
+ wxDCTemp dst((WXHDC)hDC);
dst.DrawBitmap(*bitmap, x1, y1, true);
return true;
dst.DrawBitmap(*bitmap, x1, y1, true);
return true;