git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37570
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
new_pixmap = XCreatePixmap( xdisplay, xroot, ww, hh, 1 );
GC gc = XCreateGC( xdisplay, new_pixmap, 0, NULL );
new_pixmap = XCreatePixmap( xdisplay, xroot, ww, hh, 1 );
GC gc = XCreateGC( xdisplay, new_pixmap, 0, NULL );
- int bpp = wxTheApp->GetVisualInfo(m_display)->m_visualDepth;
- if (bpp == 8)
- XSetForeground( xdisplay, gc, WhitePixel(xdisplay,xscreen) );
- else
- XSetForeground( xdisplay, gc, BlackPixel(xdisplay,xscreen) );
+ XSetForeground( xdisplay, gc, BlackPixel(xdisplay,xscreen) );
XSetFillStyle( xdisplay, gc, FillSolid );
XFillRectangle( xdisplay, new_pixmap, gc, 0, 0, ww, hh );
XSetFillStyle( xdisplay, gc, FillSolid );
XFillRectangle( xdisplay, new_pixmap, gc, 0, 0, ww, hh );
- if (bpp == 8)
- XSetForeground( xdisplay, gc, BlackPixel(xdisplay,xscreen) );
- else
- XSetForeground( xdisplay, gc, WhitePixel(xdisplay,xscreen) );
+ XSetForeground( xdisplay, gc, WhitePixel(xdisplay,xscreen) );