]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/bitmap.cpp
no changes, just a typo
[wxWidgets.git] / src / gtk / bitmap.cpp
index b1fe2f76f113f66e025fd31b85c614808489f4e4..0f7ab2e9efd9ad397cc03c9c00e6c069fc5edb92 100644 (file)
@@ -901,9 +901,7 @@ void *wxBitmap::GetRawData(wxPixelDataBase& data, int bpp)
     GdkPixbuf *pixbuf = GetPixbuf();
     const bool hasAlpha = HasAlpha();
     // allow access if bpp is valid and matches existence of alpha
-    if (pixbuf != NULL && (
-        bpp == 24 && !hasAlpha ||
-        bpp == 32 && hasAlpha))
+    if ( pixbuf && ((bpp == 24 && !hasAlpha) || (bpp == 32 && hasAlpha)) )
     {
         data.m_height = gdk_pixbuf_get_height( pixbuf );
         data.m_width = gdk_pixbuf_get_width( pixbuf );