From d05f18df40ffd4bc083577f4b03a5ff016707212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 20 Apr 2004 18:39:20 +0000 Subject: [PATCH] backported fix for 64bit archs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@26879 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/utilsx11.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unix/utilsx11.cpp b/src/unix/utilsx11.cpp index f0ab9315b7..13f31769ee 100644 --- a/src/unix/utilsx11.cpp +++ b/src/unix/utilsx11.cpp @@ -101,8 +101,8 @@ void wxSetIconsX11( WXDisplay* display, WXWindow window, if( size > 0 ) { - wxUint32* data = new wxUint32[size]; - wxUint32* ptr = data; + long* data = new long[size]; + long* ptr = data; for( i = 0; i < max; ++i ) {