fixed a compilation warning

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-07-21 18:46:50 +00:00
parent d847e69ac7
commit 72adfc4ba7

View File

@@ -399,7 +399,6 @@ static void AdjustPFDForAttributes(PIXELFORMATDESCRIPTOR& pfd, int *attribList)
void wxGLCanvas::SetupPixelFormat(int *attribList) // (HDC hDC) void wxGLCanvas::SetupPixelFormat(int *attribList) // (HDC hDC)
{ {
int pixelFormat;
PIXELFORMATDESCRIPTOR pfd = { PIXELFORMATDESCRIPTOR pfd = {
sizeof(PIXELFORMATDESCRIPTOR), /* size */ sizeof(PIXELFORMATDESCRIPTOR), /* size */
1, /* version */ 1, /* version */
@@ -423,13 +422,13 @@ void wxGLCanvas::SetupPixelFormat(int *attribList) // (HDC hDC)
AdjustPFDForAttributes(pfd, attribList); AdjustPFDForAttributes(pfd, attribList);
pixelFormat = ChoosePixelFormat((HDC) m_hDC, &pfd); int pixelFormat = ChoosePixelFormat((HDC) m_hDC, &pfd);
if (pixelFormat == 0) { if (pixelFormat == 0) {
wxLogWarning(_("ChoosePixelFormat failed.")); wxLogLastError(_T("ChoosePixelFormat"));
} }
else { else {
if (SetPixelFormat((HDC) m_hDC, pixelFormat, &pfd) != TRUE) { if ( !::SetPixelFormat((HDC) m_hDC, pixelFormat, &pfd) ) {
wxLogWarning(_("SetPixelFormat failed.")); wxLogLastError(_T("SetPixelFormat"));
} }
} }
} }