]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/bmpmotif.cpp
compilation fix for !wxUSE_THREADS
[wxWidgets.git] / src / motif / bmpmotif.cpp
index f79d04c32be5344674cc58df71d90d8a6214384e..155adc1cf4a35051668b40623793396e7bbb8fe6 100644 (file)
@@ -70,7 +70,7 @@ wxBitmapCache::~wxBitmapCache()
 
 void wxBitmapCache::SetBitmap( const wxBitmap& bitmap )
 {
-    if( m_bitmap != bitmap )
+    if ( !m_bitmap.IsSameAs(bitmap) )
     {
         InvalidateCache();
         m_bitmap = bitmap;
@@ -125,7 +125,7 @@ WXPixmap wxBitmapCache::GetPixmapFromCache(WXWidget w)
     while( XmIsGadget( widget ) )
         widget = XtParent( widget );
 
-    Pixel fg, bg;
+    WXPixel fg, bg;
     XtVaGetValues( widget,
                    XmNbackground, &bg,
                    XmNforeground, &fg,