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:
@@ -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"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user