]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xpm/create.c
Rewrote large parts of the non-DDE IPC stuff (wxTCPServer, wxTCPClient,
[wxWidgets.git] / src / xpm / create.c
index a33b3200d4bda3faaa15553c79dd4c391b48800a..29fa8a508933d1bd9fed9c5f65fe5b85288381a6 100644 (file)
@@ -1441,23 +1441,11 @@ MSWSetImagePixels(Display *dc, XImage *image, unsigned int width, unsigned int h
     unsigned int x, y;
 
     SelectObject(*dc, image->bitmap);
-       if (image->depth == 1)
-       {
-               for (y = 0; y < height; y++) {
-                       for (x = 0; x < width; x++) {
-                               SetPixel(*dc, x, y, (pixels[*(data++)] ? RGB(255,255,255) : 0)); /* data is [x+y*width] */
-                       }
-      }
-               }
-       }
-       else
-       {
-               for (y = 0; y < height; y++) {
-                       for (x = 0; x < width; x++) {
-                               SetPixel(*dc, x, y, pixels[*(data++)]); /* data is [x+y*width] */
-                       }
-               }
-       }
+    for (y = 0; y < height; y++) {
+        for (x = 0; x < width; x++) {
+            SetPixel(*dc, x, y, pixels[*(data++)]); /* data is [x+y*width] */
+        }
+    }
 }
 #else
 void MSWSetImagePixels(Display *dc, XImage *image, unsigned int width, unsigned int height,