[Gcblue-commits] gcb_wx/include/graphics tcWindow.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-11 21:59:24
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2979 Modified Files: tcWindow.h Log Message: + added ifdef MSV where needed Index: tcWindow.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcWindow.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcWindow.h 4 Apr 2004 21:21:54 -0000 1.1 --- tcWindow.h 11 Apr 2004 21:45:39 -0000 1.2 *************** *** 20,24 **** */ ! #if !defined _TCWINDOW_H_ #define _TCWINDOW_H_ --- 20,24 ---- */ ! #ifndef _TCWINDOW_H_ #define _TCWINDOW_H_ *************** *** 27,32 **** #endif // _MSC_VER > 1000 ! #include "wx/wx.h" #include "wx/msw/private.h" // for MS Windows specific definitions #include "gdiplus.h" #include <vector> --- 27,36 ---- #endif // _MSC_VER > 1000 ! #ifndef WX_PRECOMP ! #include "wx/wx.h" ! #ifdef WIN32 #include "wx/msw/private.h" // for MS Windows specific definitions + #endif // WIN32 + #endif // WX_PRECOMP #include "gdiplus.h" #include <vector> *************** *** 156,160 **** }; - #endif --- 160,163 ---- |