[Gcblue-commits] gcb_wx/include/common tcButtonBar.h,1.1,1.2 tcConsole.h,1.7,1.8 tcOptionsView.h,1.5
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-09 14:03:00
|
Update of /cvsroot/gcblue/gcb_wx/include/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26011 Modified Files: tcButtonBar.h tcConsole.h tcOptionsView.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of file Index: tcButtonBar.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcButtonBar.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcButtonBar.h 27 Sep 2003 23:22:24 -0000 1.1 --- tcButtonBar.h 9 Apr 2004 13:49:40 -0000 1.2 *************** *** 19,24 **** ! #if !defined(AFX_TCBUTTONBAR_H__4A4C1CC1_652B_4304_B78E_BC364E6998A5__INCLUDED_) ! #define AFX_TCBUTTONBAR_H__4A4C1CC1_652B_4304_B78E_BC364E6998A5__INCLUDED_ #if _MSC_VER > 1000 --- 19,24 ---- ! #ifndef __tcButtonBar_h__ ! #define __tcButtonBar_h__ #if _MSC_VER > 1000 *************** *** 31,34 **** --- 31,35 ---- #include <string> #include "gdiplus.h" + using namespace Gdiplus; *************** *** 77,79 **** }; ! #endif // !defined(AFX_TCBUTTONBAR_H__4A4C1CC1_652B_4304_B78E_BC364E6998A5__INCLUDED_) --- 78,81 ---- }; ! #endif // __tcButtonBar_h__ ! Index: tcOptionsView.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcOptionsView.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tcOptionsView.h 20 Mar 2004 18:46:45 -0000 1.5 --- tcOptionsView.h 9 Apr 2004 13:49:40 -0000 1.6 *************** *** 22,26 **** --- 22,28 ---- #define _OPTIONSVIEW_H_ + #if _MSC_VER > 1000 #pragma once + #endif #include "wx/wx.h" *************** *** 71,73 **** }; ! #endif // !defined(AFX_TCOPTIONVIEW_H__7458FB25_23DB_41E7_84C7_A58F9F165E05__INCLUDED_) --- 73,76 ---- }; ! #endif // _OPTIONSVIEW_H_ ! Index: tcConsole.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcConsole.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** tcConsole.h 21 Mar 2004 21:03:25 -0000 1.7 --- tcConsole.h 9 Apr 2004 13:49:40 -0000 1.8 *************** *** 24,28 **** --- 24,30 ---- #define _CONSOLE_H_ + #if _MSC_VER > 1000 #pragma once + #endif #include "wx/wx.h" *************** *** 78,80 **** }; ! #endif --- 80,83 ---- }; ! #endif // _CONSOLE_H_ ! |