Update of /cvsroot/htoolkit/port/src/cbits/Win32
In directory sc8-pr-cvs1:/tmp/cvs-serv25575/src/cbits/Win32
Modified Files:
AboutDialog.c
Log Message:
Add explicit cast in order to make GCC happy
Index: AboutDialog.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/Win32/AboutDialog.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AboutDialog.c 23 Jul 2003 16:25:21 -0000 1.2
--- AboutDialog.c 27 Aug 2003 08:27:46 -0000 1.3
***************
*** 405,409 ****
psh.pszCaption = "Details";
psh.nPages = nPageIndex;
! psh.ppsp = &psp;
PropertySheet(&psh);
--- 405,409 ----
psh.pszCaption = "Details";
psh.nPages = nPageIndex;
! psh.ppsp = (LPCPROPSHEETPAGE) &psp;
PropertySheet(&psh);
|