[Gcblue-commits] gcb_wx/include/graphics tcConsoleBox.h,1.2,1.3
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-11 21:32:27
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30275 Modified Files: tcConsoleBox.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of file + removed comma at the end of enum Index: tcConsoleBox.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcConsoleBox.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcConsoleBox.h 24 Mar 2004 21:09:26 -0000 1.2 --- tcConsoleBox.h 11 Apr 2004 21:18:45 -0000 1.3 *************** *** 23,27 **** --- 23,29 ---- #define _CONSOLEBOX_H_ + #if _MSC_VER > 1000 #pragma once + #endif #include "wx/wx.h" *************** *** 44,48 **** { REMOVE_LINES = 64, ! MAX_LINES = 256, }; wxArrayString textArray; --- 46,50 ---- { REMOVE_LINES = 64, ! MAX_LINES = 256 }; wxArrayString textArray; *************** *** 86,87 **** --- 88,90 ---- #endif + |