]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/palette.cpp
minor fix to wxDC::SetClippingRegion
[wxWidgets.git] / src / x11 / palette.cpp
index eb5cb7bdf1cbcd13d980bd170adafb72b73ae579..8ee782b8e4d1522fdbd82d565fe96aa50065a92a 100644 (file)
@@ -89,6 +89,7 @@ wxPaletteRefData::~wxPaletteRefData()
 
         if (pix_array_n > 0)
         {
+#if !wxUSE_NANOX
             //      XFreeColors(display, cmap, pix_array, pix_array_n, 0);
             // Be careful not to free '0' pixels...
             int i, j;
@@ -97,9 +98,10 @@ wxPaletteRefData::~wxPaletteRefData()
                 if(j > i) XFreeColors(display, cmap, &pix_array[i], j-i, 0);
                 while(j<pix_array_n && pix_array[j]==0) j++;
             }
+#endif
             delete [] pix_array;
         }
-
+        
         if (destroyable)
             XFreeColormap(display, cmap);