]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/utilsx11.cpp
support for wxUSE_PALETTE = 0
[wxWidgets.git] / src / unix / utilsx11.cpp
index 38868be697d105fec6d44188d8c6240649e61054..d4b4d521a30fee7ace59e1238595bf2077acfc06 100644 (file)
@@ -77,6 +77,7 @@ public:
         XFlush(m_display);
         XSetErrorHandler(m_old);
     }
+
 private:
     Display *m_display;
     int (*m_old)(Display*, XErrorEvent *);
@@ -104,8 +105,11 @@ void wxSetIconsX11( WXDisplay* display, WXWindow window,
 
     if( size > 0 )
     {
-        wxUint32* data = new wxUint32[size];
-        wxUint32* ptr = data;
+//       The code below is correct for 64-bit machines also.
+//       wxUint32* data = new wxUint32[size];
+//       wxUint32* ptr = data;
+        unsigned long* data = new unsigned long[size];
+        unsigned long* ptr = data;
 
         for( i = 0; i < max; ++i )
         {