[Gcblue-commits] gcb_wx/include/graphics tcRadioButton.h,1.2,1.3
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-11 21:27:51
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29368 Modified Files: tcRadioButton.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of file + removed unnecessary name of class in a method declaration Index: tcRadioButton.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcRadioButton.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcRadioButton.h 24 Mar 2004 21:09:26 -0000 1.2 --- tcRadioButton.h 11 Apr 2004 21:14:07 -0000 1.3 *************** *** 23,27 **** --- 23,29 ---- #define _TCRADIOBUTTON_H_ + #if _MSC_VER > 1000 #pragma once + #endif #include "tcWindow.h" *************** *** 65,69 **** virtual void CleanupGdi(); virtual void InitGdi(); ! virtual void tcRadioButton::OnButtonCommand(wxCommandEvent& event); virtual void OnEnterWindow(wxMouseEvent& event); virtual void OnLButtonDown(wxMouseEvent& event); --- 67,71 ---- virtual void CleanupGdi(); virtual void InitGdi(); ! virtual void OnButtonCommand(wxCommandEvent& event); virtual void OnEnterWindow(wxMouseEvent& event); virtual void OnLButtonDown(wxMouseEvent& event); *************** *** 74,79 **** }; - - - #endif \ No newline at end of file --- 76,79 ---- }; + #endif |