[Gcblue-commits] gcb_wx/include/graphics tcButtonConsole.h,1.1,1.2 tcStandardWindow.h,1.7,1.8
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-11 21:36:32
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31025 Modified Files: tcButtonConsole.h tcStandardWindow.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of file Index: tcButtonConsole.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcButtonConsole.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcButtonConsole.h 3 Jan 2004 00:45:12 -0000 1.1 --- tcButtonConsole.h 11 Apr 2004 21:22:50 -0000 1.2 *************** *** 24,31 **** --- 24,37 ---- #define _BUTTONCONSOLE_H_ + #if _MSC_VER > 1000 #pragma once + #endif + #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 "tcSoundConsole.h" #include <vector> *************** *** 54,56 **** }; ! #endif --- 60,63 ---- }; ! #endif ! Index: tcStandardWindow.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcStandardWindow.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** tcStandardWindow.h 24 Mar 2004 21:09:26 -0000 1.7 --- tcStandardWindow.h 11 Apr 2004 21:22:50 -0000 1.8 *************** *** 22,31 **** #define _STANDARDWINDOW_H_ #pragma once #include "wx/wx.h" #ifdef WIN32 ! #include "wx/msw/private.h" //for MS Windows specific definitions ! #endif #include "tcWindow.h" --- 22,35 ---- #define _STANDARDWINDOW_H_ + #if _MSC_VER > 1000 #pragma once + #endif + #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 "tcWindow.h" *************** *** 64,66 **** }; ! #endif \ No newline at end of file --- 68,71 ---- }; ! #endif ! |