From 879cf26f8d1b134457223801b445ffe26704bdeb Mon Sep 17 00:00:00 2001 From: crs Date: Fri, 26 Jul 2002 18:27:31 +0000 Subject: [PATCH] fixed type mismatch (SInt32 vs int) in definition of getWindowProperty(). --- platform/CXWindowsUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/CXWindowsUtil.cpp b/platform/CXWindowsUtil.cpp index f7ecb357..60d355bd 100644 --- a/platform/CXWindowsUtil.cpp +++ b/platform/CXWindowsUtil.cpp @@ -10,7 +10,7 @@ bool CXWindowsUtil::getWindowProperty(Display* display, Window window, Atom property, CString* data, Atom* type, - int* format, bool deleteProperty) + SInt32* format, bool deleteProperty) { assert(display != NULL);